mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
507 lines
14 KiB
C
Executable file
507 lines
14 KiB
C
Executable file
/*
|
|
* Copyright (C) 2013 Realtek Semiconductor Corp.
|
|
* All Rights Reserved.
|
|
*
|
|
* This program is the proprietary software of Realtek Semiconductor
|
|
* Corporation and/or its licensors, and only be used, duplicated,
|
|
* modified or distributed under the authorized license from Realtek.
|
|
*
|
|
* ANY USE OF THE SOFTWARE OTHER THAN AS AUTHORIZED UNDER
|
|
* THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
|
*
|
|
* $Revision$
|
|
* $Date$
|
|
*
|
|
* Purpose : RTK switch high-level API for RTL8373
|
|
* Feature : Here is a list of all functions and variables in Storm module.
|
|
*
|
|
*/
|
|
|
|
#include <rtk_switch.h>
|
|
#include <rtk_error.h>
|
|
#include <storm.h>
|
|
#include <linux/string.h>
|
|
|
|
#include <dal/dal_mgmt.h>
|
|
|
|
/* Function Name:
|
|
* dal_rtl8371c_rate_stormControlMeterIdx_set
|
|
* Description:
|
|
* Set the storm control meter index.
|
|
* Input:
|
|
* port - port id
|
|
* storm_type - storm group type
|
|
* index - storm control meter index.
|
|
* Output:
|
|
* None.
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_PORT_ID - Invalid port id
|
|
* RT_ERR_FILTER_METER_ID - Invalid meter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlMeterIdx_set(rtk_port_t port, rtk_rate_storm_group_t stormType, rtk_uint32 index)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlMeterIdx_set)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlMeterIdx_set(port, stormType, index);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlMeterIdx_get
|
|
* Description:
|
|
* Get the storm control meter index.
|
|
* Input:
|
|
* port - port id
|
|
* storm_type - storm group type
|
|
* Output:
|
|
* pIndex - storm control meter index.
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_PORT_ID - Invalid port id
|
|
* RT_ERR_FILTER_METER_ID - Invalid meter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlMeterIdx_get(rtk_port_t port, rtk_rate_storm_group_t stormType, rtk_uint32 *pIndex)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlMeterIdx_get)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlMeterIdx_get(port, stormType, pIndex);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlPortEnable_set
|
|
* Description:
|
|
* Set enable status of storm control on specified port.
|
|
* Input:
|
|
* port - port id
|
|
* stormType - storm group type
|
|
* enable - enable status of storm control
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_PORT_ID - invalid port id
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlPortEnable_set(rtk_port_t port, rtk_rate_storm_group_t stormType, rtk_enable_t enable)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlPortEnable_set)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlPortEnable_set(port, stormType, enable);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlPortEnable_set
|
|
* Description:
|
|
* Set enable status of storm control on specified port.
|
|
* Input:
|
|
* port - port id
|
|
* stormType - storm group type
|
|
* Output:
|
|
* pEnable - enable status of storm control
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_PORT_ID - invalid port id
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlPortEnable_get(rtk_port_t port, rtk_rate_storm_group_t stormType, rtk_enable_t *pEnable)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlPortEnable_get)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlPortEnable_get(port, stormType, pEnable);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_storm_bypass_set
|
|
* Description:
|
|
* Set bypass storm filter control configuration.
|
|
* Input:
|
|
* type - Bypass storm filter control type.
|
|
* enable - Bypass status.
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK - OK
|
|
* RT_ERR_FAILED - Failed
|
|
* RT_ERR_SMI - SMI access error
|
|
* RT_ERR_INPUT - Invalid input parameters.
|
|
* RT_ERR_ENABLE - Invalid IFG parameter
|
|
* Note:
|
|
*
|
|
* This API can set per-port bypass stomr filter control frame type including RMA and igmp.
|
|
* The bypass frame type is as following:
|
|
* - BYPASS_BRG_GROUP,
|
|
* - BYPASS_FD_PAUSE,
|
|
* - BYPASS_SP_MCAST,
|
|
* - BYPASS_1X_PAE,
|
|
* - BYPASS_UNDEF_BRG_04,
|
|
* - BYPASS_UNDEF_BRG_05,
|
|
* - BYPASS_UNDEF_BRG_06,
|
|
* - BYPASS_UNDEF_BRG_07,
|
|
* - BYPASS_PROVIDER_BRIDGE_GROUP_ADDRESS,
|
|
* - BYPASS_UNDEF_BRG_09,
|
|
* - BYPASS_UNDEF_BRG_0A,
|
|
* - BYPASS_UNDEF_BRG_0B,
|
|
* - BYPASS_UNDEF_BRG_0C,
|
|
* - BYPASS_PROVIDER_BRIDGE_GVRP_ADDRESS,
|
|
* - BYPASS_8021AB,
|
|
* - BYPASS_UNDEF_BRG_0F,
|
|
* - BYPASS_BRG_MNGEMENT,
|
|
* - BYPASS_UNDEFINED_11,
|
|
* - BYPASS_UNDEFINED_12,
|
|
* - BYPASS_UNDEFINED_13,
|
|
* - BYPASS_UNDEFINED_14,
|
|
* - BYPASS_UNDEFINED_15,
|
|
* - BYPASS_UNDEFINED_16,
|
|
* - BYPASS_UNDEFINED_17,
|
|
* - BYPASS_UNDEFINED_18,
|
|
* - BYPASS_UNDEFINED_19,
|
|
* - BYPASS_UNDEFINED_1A,
|
|
* - BYPASS_UNDEFINED_1B,
|
|
* - BYPASS_UNDEFINED_1C,
|
|
* - BYPASS_UNDEFINED_1D,
|
|
* - BYPASS_UNDEFINED_1E,
|
|
* - BYPASS_UNDEFINED_1F,
|
|
* - BYPASS_GMRP,
|
|
* - BYPASS_GVRP,
|
|
* - BYPASS_UNDEF_GARP_22,
|
|
* - BYPASS_UNDEF_GARP_23,
|
|
* - BYPASS_UNDEF_GARP_24,
|
|
* - BYPASS_UNDEF_GARP_25,
|
|
* - BYPASS_UNDEF_GARP_26,
|
|
* - BYPASS_UNDEF_GARP_27,
|
|
* - BYPASS_UNDEF_GARP_28,
|
|
* - BYPASS_UNDEF_GARP_29,
|
|
* - BYPASS_UNDEF_GARP_2A,
|
|
* - BYPASS_UNDEF_GARP_2B,
|
|
* - BYPASS_UNDEF_GARP_2C,
|
|
* - BYPASS_UNDEF_GARP_2D,
|
|
* - BYPASS_UNDEF_GARP_2E,
|
|
* - BYPASS_UNDEF_GARP_2F,
|
|
* - BYPASS_IGMP.
|
|
* - BYPASS_CDP.
|
|
* - BYPASS_CSSTP.
|
|
* - BYPASS_LLDP.
|
|
*/
|
|
rtk_api_ret_t rtk_storm_bypass_set(rtk_storm_bypass_t type, rtk_enable_t enable)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->storm_bypass_set)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->storm_bypass_set(type, enable);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_storm_bypass_get
|
|
* Description:
|
|
* Get bypass storm filter control configuration.
|
|
* Input:
|
|
* type - Bypass storm filter control type.
|
|
* Output:
|
|
* pEnable - Bypass status.
|
|
* Return:
|
|
* RT_ERR_OK - OK
|
|
* RT_ERR_FAILED - Failed
|
|
* RT_ERR_SMI - SMI access error
|
|
* RT_ERR_INPUT - Invalid input parameters.
|
|
* Note:
|
|
* This API can get per-port bypass stomr filter control frame type including RMA and igmp.
|
|
* The bypass frame type is as following:
|
|
* - BYPASS_BRG_GROUP,
|
|
* - BYPASS_FD_PAUSE,
|
|
* - BYPASS_SP_MCAST,
|
|
* - BYPASS_1X_PAE,
|
|
* - BYPASS_UNDEF_BRG_04,
|
|
* - BYPASS_UNDEF_BRG_05,
|
|
* - BYPASS_UNDEF_BRG_06,
|
|
* - BYPASS_UNDEF_BRG_07,
|
|
* - BYPASS_PROVIDER_BRIDGE_GROUP_ADDRESS,
|
|
* - BYPASS_UNDEF_BRG_09,
|
|
* - BYPASS_UNDEF_BRG_0A,
|
|
* - BYPASS_UNDEF_BRG_0B,
|
|
* - BYPASS_UNDEF_BRG_0C,
|
|
* - BYPASS_PROVIDER_BRIDGE_GVRP_ADDRESS,
|
|
* - BYPASS_8021AB,
|
|
* - BYPASS_UNDEF_BRG_0F,
|
|
* - BYPASS_BRG_MNGEMENT,
|
|
* - BYPASS_UNDEFINED_11,
|
|
* - BYPASS_UNDEFINED_12,
|
|
* - BYPASS_UNDEFINED_13,
|
|
* - BYPASS_UNDEFINED_14,
|
|
* - BYPASS_UNDEFINED_15,
|
|
* - BYPASS_UNDEFINED_16,
|
|
* - BYPASS_UNDEFINED_17,
|
|
* - BYPASS_UNDEFINED_18,
|
|
* - BYPASS_UNDEFINED_19,
|
|
* - BYPASS_UNDEFINED_1A,
|
|
* - BYPASS_UNDEFINED_1B,
|
|
* - BYPASS_UNDEFINED_1C,
|
|
* - BYPASS_UNDEFINED_1D,
|
|
* - BYPASS_UNDEFINED_1E,
|
|
* - BYPASS_UNDEFINED_1F,
|
|
* - BYPASS_GMRP,
|
|
* - BYPASS_GVRP,
|
|
* - BYPASS_UNDEF_GARP_22,
|
|
* - BYPASS_UNDEF_GARP_23,
|
|
* - BYPASS_UNDEF_GARP_24,
|
|
* - BYPASS_UNDEF_GARP_25,
|
|
* - BYPASS_UNDEF_GARP_26,
|
|
* - BYPASS_UNDEF_GARP_27,
|
|
* - BYPASS_UNDEF_GARP_28,
|
|
* - BYPASS_UNDEF_GARP_29,
|
|
* - BYPASS_UNDEF_GARP_2A,
|
|
* - BYPASS_UNDEF_GARP_2B,
|
|
* - BYPASS_UNDEF_GARP_2C,
|
|
* - BYPASS_UNDEF_GARP_2D,
|
|
* - BYPASS_UNDEF_GARP_2E,
|
|
* - BYPASS_UNDEF_GARP_2F,
|
|
* - BYPASS_IGMP.
|
|
* - BYPASS_CDP.
|
|
* - BYPASS_CSSTP.
|
|
* - BYPASS_LLDP.
|
|
*/
|
|
rtk_api_ret_t rtk_storm_bypass_get(rtk_storm_bypass_t type, rtk_enable_t *pEnable)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->storm_bypass_get)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->storm_bypass_get(type, pEnable);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlExtPortmask_set
|
|
* Description:
|
|
* Set externsion storm control port mask
|
|
* Input:
|
|
* portmask - port mask
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlExtPortmask_set(rtk_uint32 portmask)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlExtPortmask_set)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlExtPortmask_set(portmask);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlExtPortmask_get
|
|
* Description:
|
|
* Set externsion storm control port mask
|
|
* Input:
|
|
* None
|
|
* Output:
|
|
* pPortmask - port mask
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlExtPortmask_get(rtk_uint32 *pPortmask)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlExtPortmask_get)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlExtPortmask_get(pPortmask);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlExtEnable_set
|
|
* Description:
|
|
* Set externsion storm control state
|
|
* Input:
|
|
* stormType - storm group type
|
|
* enable - externsion storm control state
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlExtEnable_set(rtk_rate_storm_group_t stormType, rtk_enable_t enable)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlExtEnable_set)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlExtEnable_set(stormType, enable);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlExtEnable_get
|
|
* Description:
|
|
* Get externsion storm control state
|
|
* Input:
|
|
* stormType - storm group type
|
|
* Output:
|
|
* pEnable - externsion storm control state
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlExtEnable_get(rtk_rate_storm_group_t stormType, rtk_enable_t *pEnable)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlExtEnable_get)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlExtEnable_get(stormType, pEnable);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlExtMeterIdx_set
|
|
* Description:
|
|
* Set externsion storm control meter index
|
|
* Input:
|
|
* stormType - storm group type
|
|
* index - externsion storm control state
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlExtMeterIdx_set(rtk_rate_storm_group_t stormType, rtk_uint32 index)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlExtMeterIdx_set)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlExtMeterIdx_set(stormType, index);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
/* Function Name:
|
|
* rtk_rate_stormControlExtMeterIdx_get
|
|
* Description:
|
|
* Get externsion storm control meter index
|
|
* Input:
|
|
* stormType - storm group type
|
|
* pIndex - externsion storm control state
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* Note:
|
|
*
|
|
*/
|
|
rtk_api_ret_t rtk_rate_stormControlExtMeterIdx_get(rtk_rate_storm_group_t stormType, rtk_uint32 *pIndex)
|
|
{
|
|
rtk_api_ret_t retVal;
|
|
|
|
if (NULL == RT_MAPPER->rate_stormControlExtMeterIdx_get)
|
|
return RT_ERR_DRIVER_NOT_FOUND;
|
|
|
|
RTK_API_LOCK();
|
|
retVal = RT_MAPPER->rate_stormControlExtMeterIdx_get(stormType, pIndex);
|
|
RTK_API_UNLOCK();
|
|
|
|
return retVal;
|
|
}
|
|
|
|
|