xref: /onnv-gate/usr/src/uts/common/sys/aggr_impl.h (revision 56:8b051e816bd8)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
50Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
60Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
70Sstevel@tonic-gate  * with the License.
80Sstevel@tonic-gate  *
90Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
100Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
110Sstevel@tonic-gate  * See the License for the specific language governing permissions
120Sstevel@tonic-gate  * and limitations under the License.
130Sstevel@tonic-gate  *
140Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
150Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
160Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
170Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
180Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
190Sstevel@tonic-gate  *
200Sstevel@tonic-gate  * CDDL HEADER END
210Sstevel@tonic-gate  */
220Sstevel@tonic-gate /*
230Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #ifndef	_SYS_AGGR_IMPL_H
280Sstevel@tonic-gate #define	_SYS_AGGR_IMPL_H
290Sstevel@tonic-gate 
300Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
310Sstevel@tonic-gate 
320Sstevel@tonic-gate #include <sys/types.h>
330Sstevel@tonic-gate #include <sys/mac.h>
340Sstevel@tonic-gate #include <sys/ght.h>
350Sstevel@tonic-gate #include <sys/aggr_lacp.h>
360Sstevel@tonic-gate 
370Sstevel@tonic-gate #ifdef	__cplusplus
380Sstevel@tonic-gate extern "C" {
390Sstevel@tonic-gate #endif
400Sstevel@tonic-gate 
410Sstevel@tonic-gate #ifdef _KERNEL
420Sstevel@tonic-gate 
430Sstevel@tonic-gate #define	AGGR_MINOR_CTL	0			/* control interface minor */
440Sstevel@tonic-gate 
450Sstevel@tonic-gate /* flags for aggr_grp_modify() */
460Sstevel@tonic-gate #define	AGGR_MODIFY_POLICY		0x01
470Sstevel@tonic-gate #define	AGGR_MODIFY_MAC			0x02
480Sstevel@tonic-gate #define	AGGR_MODIFY_LACP_MODE		0x04
490Sstevel@tonic-gate #define	AGGR_MODIFY_LACP_TIMER		0x08
500Sstevel@tonic-gate 
510Sstevel@tonic-gate /*
520Sstevel@tonic-gate  * A link aggregation MAC port.
530Sstevel@tonic-gate  * Note that lp_next is protected by the lg_lock of the group the
540Sstevel@tonic-gate  * port is part of.
550Sstevel@tonic-gate  */
560Sstevel@tonic-gate typedef struct aggr_port_s {
570Sstevel@tonic-gate 	struct aggr_port_s *lp_next;
580Sstevel@tonic-gate 	struct aggr_grp_s *lp_grp;		/* back ptr to group */
590Sstevel@tonic-gate 	char		lp_devname[MAXNAMELEN + 1];
600Sstevel@tonic-gate 	uint8_t		lp_addr[ETHERADDRL];	/* port MAC address */
610Sstevel@tonic-gate 	uint32_t	lp_refs;		/* refcount */
620Sstevel@tonic-gate 	aggr_port_state_t lp_state;
630Sstevel@tonic-gate 	uint32_t	lp_started : 1,
640Sstevel@tonic-gate 			lp_tx_enabled : 1,
650Sstevel@tonic-gate 			lp_collector_enabled : 1,
660Sstevel@tonic-gate 			lp_promisc_on : 1,
670Sstevel@tonic-gate 			lp_closing : 1,
680Sstevel@tonic-gate 			/*
690Sstevel@tonic-gate 			 * Indicates whether it is in the process of setting
700Sstevel@tonic-gate 			 * MAC address to the aggregation group MAC
710Sstevel@tonic-gate 			 */
720Sstevel@tonic-gate 			lp_set_grpmac : 1,
730Sstevel@tonic-gate 			lp_pad_bits : 26;
740Sstevel@tonic-gate 	uint_t		lp_port;
750Sstevel@tonic-gate 	mac_handle_t	lp_mh;
760Sstevel@tonic-gate 	const mac_info_t *lp_mip;
770Sstevel@tonic-gate 	mac_notify_handle_t lp_mnh;
780Sstevel@tonic-gate 	mac_rx_handle_t	lp_mrh;
790Sstevel@tonic-gate 	krwlock_t	lp_lock;
800Sstevel@tonic-gate 	uint_t		lp_tx_idx;		/* idx in group's tx array */
810Sstevel@tonic-gate 	uint64_t	lp_ifspeed;
820Sstevel@tonic-gate 	link_state_t	lp_link_state;
830Sstevel@tonic-gate 	link_duplex_t	lp_link_duplex;
840Sstevel@tonic-gate 	uint64_t	lp_stat[MAC_NSTAT];
850Sstevel@tonic-gate 	aggr_lacp_port_t lp_lacp;		/* LACP state */
860Sstevel@tonic-gate 	lacp_stats_t	lp_lacp_stats;
87*56Smeem 	const mac_txinfo_t *lp_txinfo;
880Sstevel@tonic-gate } aggr_port_t;
890Sstevel@tonic-gate 
900Sstevel@tonic-gate /*
910Sstevel@tonic-gate  * A link aggregation group.
920Sstevel@tonic-gate  *
930Sstevel@tonic-gate  * The following per-group flags are defined:
940Sstevel@tonic-gate  *
950Sstevel@tonic-gate  * - lg_addr_fixed: set when the MAC address has been explicitely set
960Sstevel@tonic-gate  *   when the group was created, or by a m_unicst_set() request.
970Sstevel@tonic-gate  *   If this flag is not set, the MAC address of the group will be
980Sstevel@tonic-gate  *   set to the first port that is added to the group.
990Sstevel@tonic-gate  *
1000Sstevel@tonic-gate  * - lg_add_set: used only when lg_addr_fixed is not set. Captures whether
1010Sstevel@tonic-gate  *   the MAC address was initialized according to the members of the group.
1020Sstevel@tonic-gate  *   When set, the lg_port field points to the port from which the
1030Sstevel@tonic-gate  *   MAC address was initialized.
1040Sstevel@tonic-gate  *
1050Sstevel@tonic-gate  */
1060Sstevel@tonic-gate typedef struct aggr_grp_s {
1070Sstevel@tonic-gate 	krwlock_t	lg_lock;
1080Sstevel@tonic-gate 	uint16_t	lg_key;			/* key (group port number) */
1090Sstevel@tonic-gate 	uint32_t	lg_refs;		/* refcount */
1100Sstevel@tonic-gate 	uint16_t	lg_nports;		/* number of MAC ports */
1110Sstevel@tonic-gate 	uint8_t		lg_addr[ETHERADDRL];	/* group MAC address */
1120Sstevel@tonic-gate 	ghte_t		lg_hte;
1130Sstevel@tonic-gate 	uint16_t
1140Sstevel@tonic-gate 			lg_addr_fixed : 1,	/* fixed MAC address? */
1150Sstevel@tonic-gate 			lg_started : 1,		/* group started? */
1160Sstevel@tonic-gate 			lg_promisc : 1,		/* in promiscuous mode? */
1170Sstevel@tonic-gate 			lg_closing : 1,
1180Sstevel@tonic-gate 			lg_pad_bits : 12;
1190Sstevel@tonic-gate 	aggr_port_t	*lg_ports;		/* list of configured ports */
1200Sstevel@tonic-gate 	aggr_port_t	*lg_mac_addr_port;
1210Sstevel@tonic-gate 	mac_t		lg_mac;
1220Sstevel@tonic-gate 	uint_t		lg_rx_resources;
1230Sstevel@tonic-gate 	uint_t		lg_nattached_ports;
1240Sstevel@tonic-gate 	uint_t		lg_ntx_ports;
1250Sstevel@tonic-gate 	aggr_port_t	**lg_tx_ports;		/* array of tx ports */
1260Sstevel@tonic-gate 	uint_t		lg_tx_ports_size;	/* size of lg_tx_ports */
1270Sstevel@tonic-gate 	uint32_t	lg_tx_policy;		/* outbound policy */
1280Sstevel@tonic-gate 	uint64_t	lg_ifspeed;
1290Sstevel@tonic-gate 	link_state_t	lg_link_state;
1300Sstevel@tonic-gate 	link_duplex_t	lg_link_duplex;
1310Sstevel@tonic-gate 	uint64_t	lg_stat[MAC_NSTAT];
1320Sstevel@tonic-gate 	aggr_lacp_mode_t lg_lacp_mode;		/* off, active, or passive */
1330Sstevel@tonic-gate 	Agg_t		aggr;			/* 802.3ad data */
1340Sstevel@tonic-gate } aggr_grp_t;
1350Sstevel@tonic-gate 
1360Sstevel@tonic-gate #define	AGGR_LACP_LOCK(grp)	mutex_enter(&(grp)->aggr.gl_lock);
1370Sstevel@tonic-gate #define	AGGR_LACP_UNLOCK(grp)	mutex_exit(&(grp)->aggr.gl_lock);
1380Sstevel@tonic-gate #define	AGGR_LACP_LOCK_HELD(grp) MUTEX_HELD(&(grp)->aggr.gl_lock)
1390Sstevel@tonic-gate 
1400Sstevel@tonic-gate #define	AGGR_GRP_REFHOLD(grp) {			\
1410Sstevel@tonic-gate 	atomic_add_32(&(grp)->lg_refs, 1);	\
1420Sstevel@tonic-gate 	ASSERT((grp)->lg_refs != 0);		\
1430Sstevel@tonic-gate }
1440Sstevel@tonic-gate 
1450Sstevel@tonic-gate #define	AGGR_GRP_REFRELE(grp) {					\
1460Sstevel@tonic-gate 	ASSERT((grp)->lg_refs != 0);				\
1470Sstevel@tonic-gate 	membar_exit();						\
1480Sstevel@tonic-gate 	if (atomic_add_32_nv(&(grp)->lg_refs, -1) == 0)		\
1490Sstevel@tonic-gate 		aggr_grp_free(grp);				\
1500Sstevel@tonic-gate }
1510Sstevel@tonic-gate 
1520Sstevel@tonic-gate #define	AGGR_PORT_REFHOLD(port) {		\
1530Sstevel@tonic-gate 	atomic_add_32(&(port)->lp_refs, 1);	\
1540Sstevel@tonic-gate 	ASSERT((port)->lp_refs != 0);		\
1550Sstevel@tonic-gate }
1560Sstevel@tonic-gate 
1570Sstevel@tonic-gate #define	AGGR_PORT_REFRELE(port) {				\
1580Sstevel@tonic-gate 	ASSERT((port)->lp_refs != 0);				\
1590Sstevel@tonic-gate 	membar_exit();						\
1600Sstevel@tonic-gate 	if (atomic_add_32_nv(&(port)->lp_refs, -1) == 0)	\
1610Sstevel@tonic-gate 		aggr_port_free(port);				\
1620Sstevel@tonic-gate }
1630Sstevel@tonic-gate 
1640Sstevel@tonic-gate extern dev_info_t *aggr_dip;
1650Sstevel@tonic-gate 
1660Sstevel@tonic-gate extern int aggr_open(dev_t *, int, int, cred_t *);
1670Sstevel@tonic-gate extern int aggr_close(dev_t, int, int, cred_t *);
1680Sstevel@tonic-gate extern int aggr_ioctl(dev_t, int, intptr_t, int, cred_t *, int *);
1690Sstevel@tonic-gate 
1700Sstevel@tonic-gate typedef int (*aggr_grp_info_new_grp_fn_t)(void *, uint32_t, uchar_t *,
1710Sstevel@tonic-gate     boolean_t, uint32_t, uint32_t, aggr_lacp_mode_t, aggr_lacp_timer_t);
1720Sstevel@tonic-gate typedef int (*aggr_grp_info_new_port_fn_t)(void *, char *, uint32_t,
1730Sstevel@tonic-gate     uchar_t *, aggr_port_state_t, aggr_lacp_state_t *);
1740Sstevel@tonic-gate typedef void (*aggr_grp_walker_fn_t)(aggr_grp_t *, void *);
1750Sstevel@tonic-gate 
1760Sstevel@tonic-gate extern void aggr_grp_init(void);
1770Sstevel@tonic-gate extern int aggr_grp_fini(void);
1780Sstevel@tonic-gate extern int aggr_grp_create(uint32_t, uint_t, laioc_port_t *, uint32_t,
1790Sstevel@tonic-gate     boolean_t, uchar_t *, aggr_lacp_mode_t, aggr_lacp_timer_t);
1800Sstevel@tonic-gate extern int aggr_grp_delete(uint32_t);
1810Sstevel@tonic-gate extern void aggr_grp_free(aggr_grp_t *);
1820Sstevel@tonic-gate 
1830Sstevel@tonic-gate extern int aggr_grp_info(uint_t *, uint32_t, void *,
1840Sstevel@tonic-gate     aggr_grp_info_new_grp_fn_t, aggr_grp_info_new_port_fn_t);
1850Sstevel@tonic-gate extern void aggr_grp_notify(aggr_grp_t *, uint32_t);
1860Sstevel@tonic-gate extern boolean_t aggr_grp_attach_port(aggr_grp_t *, aggr_port_t *);
1870Sstevel@tonic-gate extern boolean_t aggr_grp_detach_port(aggr_grp_t *, aggr_port_t *);
1880Sstevel@tonic-gate extern boolean_t aggr_grp_port_mac_changed(aggr_grp_t *, aggr_port_t *);
1890Sstevel@tonic-gate extern int aggr_grp_add_ports(uint32_t, uint_t, laioc_port_t *);
1900Sstevel@tonic-gate extern int aggr_grp_rem_ports(uint32_t, uint_t, laioc_port_t *);
1910Sstevel@tonic-gate extern void aggr_grp_update_ports_mac(aggr_grp_t *);
1920Sstevel@tonic-gate extern int aggr_grp_modify(uint32_t, aggr_grp_t *, uint8_t, uint32_t,
1930Sstevel@tonic-gate     boolean_t, const uchar_t *, aggr_lacp_mode_t, aggr_lacp_timer_t);
1940Sstevel@tonic-gate extern void aggr_grp_multicst_port(aggr_port_t *, boolean_t);
1950Sstevel@tonic-gate extern void aggr_grp_walk(aggr_grp_walker_fn_t, void *);
1960Sstevel@tonic-gate 
1970Sstevel@tonic-gate extern void aggr_port_init(void);
1980Sstevel@tonic-gate extern int aggr_port_fini(void);
1990Sstevel@tonic-gate extern int aggr_port_create(const char *, uint_t, aggr_port_t **);
2000Sstevel@tonic-gate extern void aggr_port_delete(aggr_port_t *);
2010Sstevel@tonic-gate extern void aggr_port_free(aggr_port_t *);
2020Sstevel@tonic-gate extern int aggr_port_start(aggr_port_t *);
2030Sstevel@tonic-gate extern void aggr_port_stop(aggr_port_t *);
2040Sstevel@tonic-gate extern int aggr_port_promisc(aggr_port_t *, boolean_t);
2050Sstevel@tonic-gate extern int aggr_port_unicst(aggr_port_t *, uint8_t *);
2060Sstevel@tonic-gate extern int aggr_port_multicst(void *, boolean_t, const uint8_t *);
2070Sstevel@tonic-gate extern uint64_t aggr_port_stat(aggr_port_t *, enum mac_stat);
2080Sstevel@tonic-gate 
2090Sstevel@tonic-gate extern void aggr_recv_cb(void *, mac_resource_handle_t, mblk_t *);
2100Sstevel@tonic-gate 
2110Sstevel@tonic-gate extern mblk_t *aggr_m_tx(void *, mblk_t *);
2120Sstevel@tonic-gate extern void aggr_send_port_enable(aggr_port_t *);
2130Sstevel@tonic-gate extern void aggr_send_port_disable(aggr_port_t *);
2140Sstevel@tonic-gate extern void aggr_send_update_policy(aggr_grp_t *, uint32_t);
2150Sstevel@tonic-gate 
2160Sstevel@tonic-gate extern void aggr_lacp_init_port(aggr_port_t *);
2170Sstevel@tonic-gate extern void aggr_lacp_init_grp(aggr_grp_t *);
2180Sstevel@tonic-gate extern void aggr_lacp_set_mode(aggr_grp_t *, aggr_lacp_mode_t,
2190Sstevel@tonic-gate     aggr_lacp_timer_t);
2200Sstevel@tonic-gate extern void aggr_lacp_update_mode(aggr_grp_t *, aggr_lacp_mode_t);
2210Sstevel@tonic-gate extern void aggr_lacp_update_timer(aggr_grp_t *, aggr_lacp_timer_t);
2220Sstevel@tonic-gate extern void aggr_lacp_rx(aggr_port_t *, mblk_t *);
2230Sstevel@tonic-gate extern void aggr_lacp_port_attached(aggr_port_t *);
2240Sstevel@tonic-gate extern void aggr_lacp_port_detached(aggr_port_t *);
2250Sstevel@tonic-gate extern void aggr_lacp_policy_changed(aggr_grp_t *);
2260Sstevel@tonic-gate 
2270Sstevel@tonic-gate #endif	/* _KERNEL */
2280Sstevel@tonic-gate 
2290Sstevel@tonic-gate #ifdef	__cplusplus
2300Sstevel@tonic-gate }
2310Sstevel@tonic-gate #endif
2320Sstevel@tonic-gate 
2330Sstevel@tonic-gate #endif	/* _SYS_AGGR_IMPL_H */
234