blob: 01ad94e1481e87396df669be4001c922b5c2af83 [file] [log] [blame]
/*
* Copyright (c) 2012,2018, The Linux Foundation. All rights reserved.
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all copies.
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
* @defgroup fal_leaky FAL_LEAKY
* @{
*/
#ifndef _FAL_LEAKY_H_
#define _FAL_LEAKY_H_
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "sw.h"
#include "fal/fal_type.h"
/**
@brief This enum defines the leaky control mode.
*/
typedef enum {
FAL_LEAKY_PORT_CTRL = 0, /**< control leaky through port which packets received*/
FAL_LEAKY_FDB_CTRL, /**< control leaky through fdb entry*/
FAL_LEAKY_CTRL_MODE_BUTT
}
fal_leaky_ctrl_mode_t;
sw_error_t
fal_uc_leaky_mode_set(a_uint32_t dev_id,
fal_leaky_ctrl_mode_t ctrl_mode);
sw_error_t
fal_uc_leaky_mode_get(a_uint32_t dev_id,
fal_leaky_ctrl_mode_t * ctrl_mode);
sw_error_t
fal_mc_leaky_mode_set(a_uint32_t dev_id,
fal_leaky_ctrl_mode_t ctrl_mode);
sw_error_t
fal_mc_leaky_mode_get(a_uint32_t dev_id,
fal_leaky_ctrl_mode_t * ctrl_mode);
sw_error_t
fal_port_arp_leaky_set(a_uint32_t dev_id, fal_port_t port_id,
a_bool_t enable);
sw_error_t
fal_port_arp_leaky_get(a_uint32_t dev_id, fal_port_t port_id,
a_bool_t * enable);
sw_error_t
fal_port_uc_leaky_set(a_uint32_t dev_id, fal_port_t port_id,
a_bool_t enable);
sw_error_t
fal_port_uc_leaky_get(a_uint32_t dev_id, fal_port_t port_id,
a_bool_t * enable);
sw_error_t
fal_port_mc_leaky_set(a_uint32_t dev_id, fal_port_t port_id,
a_bool_t enable);
sw_error_t
fal_port_mc_leaky_get(a_uint32_t dev_id, fal_port_t port_id,
a_bool_t * enable);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _FAL_LEAKY_H_ */
/**
* @}
*/