aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mediatek/files-5.4/drivers/net/phy/rtk/rtl8367c/rtl8367c_asicdrv_dot1x.c
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/mediatek/files-5.4/drivers/net/phy/rtk/rtl8367c/rtl8367c_asicdrv_dot1x.c')
-rw-r--r--target/linux/mediatek/files-5.4/drivers/net/phy/rtk/rtl8367c/rtl8367c_asicdrv_dot1x.c415
1 files changed, 0 insertions, 415 deletions
diff --git a/target/linux/mediatek/files-5.4/drivers/net/phy/rtk/rtl8367c/rtl8367c_asicdrv_dot1x.c b/target/linux/mediatek/files-5.4/drivers/net/phy/rtk/rtl8367c/rtl8367c_asicdrv_dot1x.c
deleted file mode 100644
index 73153e177e..0000000000
--- a/target/linux/mediatek/files-5.4/drivers/net/phy/rtk/rtl8367c/rtl8367c_asicdrv_dot1x.c
+++ /dev/null
@@ -1,415 +0,0 @@
-/*
- * Copyright (C) 2013 Realtek Semiconductor Corp.
- * All Rights Reserved.
- *
- * Unless you and Realtek execute a separate written software license
- * agreement governing use of this software, this software is licensed
- * to you under the terms of the GNU General Public License version 2,
- * available at https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
- *
- * $Revision: 76306 $
- * $Date: 2017-03-08 15:13:58 +0800 (週三, 08 三月 2017) $
- *
- * Purpose : RTL8367C switch high-level API for RTL8367C
- * Feature : 802.1X related functions
- *
- */
-#include <rtl8367c_asicdrv_dot1x.h>
-/* Function Name:
- * rtl8367c_setAsic1xPBEnConfig
- * Description:
- * Set 802.1x port-based port enable configuration
- * Input:
- * port - Physical port number (0~7)
- * enabled - 1: enabled, 0: disabled
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xPBEnConfig(rtk_uint32 port, rtk_uint32 enabled)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_setAsicRegBit(RTL8367C_DOT1X_PORT_ENABLE_REG, port, enabled);
-}
-/* Function Name:
- * rtl8367c_getAsic1xPBEnConfig
- * Description:
- * Get 802.1x port-based port enable configuration
- * Input:
- * port - Physical port number (0~7)
- * pEnabled - 1: enabled, 0: disabled
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xPBEnConfig(rtk_uint32 port, rtk_uint32 *pEnabled)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_getAsicRegBit(RTL8367C_DOT1X_PORT_ENABLE_REG, port, pEnabled);
-}
-/* Function Name:
- * rtl8367c_setAsic1xPBAuthConfig
- * Description:
- * Set 802.1x port-based authorised port configuration
- * Input:
- * port - Physical port number (0~7)
- * auth - 1: authorised, 0: non-authorised
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xPBAuthConfig(rtk_uint32 port, rtk_uint32 auth)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_setAsicRegBit(RTL8367C_DOT1X_PORT_AUTH_REG, port, auth);
-}
-/* Function Name:
- * rtl8367c_getAsic1xPBAuthConfig
- * Description:
- * Get 802.1x port-based authorised port configuration
- * Input:
- * port - Physical port number (0~7)
- * pAuth - 1: authorised, 0: non-authorised
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xPBAuthConfig(rtk_uint32 port, rtk_uint32 *pAuth)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_getAsicRegBit(RTL8367C_DOT1X_PORT_AUTH_REG, port, pAuth);
-}
-/* Function Name:
- * rtl8367c_setAsic1xPBOpdirConfig
- * Description:
- * Set 802.1x port-based operational direction
- * Input:
- * port - Physical port number (0~7)
- * opdir - Operation direction 1: IN, 0:BOTH
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xPBOpdirConfig(rtk_uint32 port, rtk_uint32 opdir)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_setAsicRegBit(RTL8367C_DOT1X_PORT_OPDIR_REG, port, opdir);
-}
-/* Function Name:
- * rtl8367c_getAsic1xPBOpdirConfig
- * Description:
- * Get 802.1x port-based operational direction
- * Input:
- * port - Physical port number (0~7)
- * pOpdir - Operation direction 1: IN, 0:BOTH
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xPBOpdirConfig(rtk_uint32 port, rtk_uint32* pOpdir)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_getAsicRegBit(RTL8367C_DOT1X_PORT_OPDIR_REG, port, pOpdir);
-}
-/* Function Name:
- * rtl8367c_setAsic1xMBEnConfig
- * Description:
- * Set 802.1x mac-based port enable configuration
- * Input:
- * port - Physical port number (0~7)
- * enabled - 1: enabled, 0: disabled
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xMBEnConfig(rtk_uint32 port, rtk_uint32 enabled)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_setAsicRegBit(RTL8367C_DOT1X_MAC_ENABLE_REG, port, enabled);
-}
-/* Function Name:
- * rtl8367c_getAsic1xMBEnConfig
- * Description:
- * Get 802.1x mac-based port enable configuration
- * Input:
- * port - Physical port number (0~7)
- * pEnabled - 1: enabled, 0: disabled
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xMBEnConfig(rtk_uint32 port, rtk_uint32 *pEnabled)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- return rtl8367c_getAsicRegBit(RTL8367C_DOT1X_MAC_ENABLE_REG, port, pEnabled);
-}
-/* Function Name:
- * rtl8367c_setAsic1xMBOpdirConfig
- * Description:
- * Set 802.1x mac-based operational direction
- * Input:
- * opdir - Operation direction 1: IN, 0:BOTH
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xMBOpdirConfig(rtk_uint32 opdir)
-{
- return rtl8367c_setAsicRegBit(RTL8367C_DOT1X_CFG_REG, RTL8367C_DOT1X_MAC_OPDIR_OFFSET, opdir);
-}
-/* Function Name:
- * rtl8367c_getAsic1xMBOpdirConfig
- * Description:
- * Get 802.1x mac-based operational direction
- * Input:
- * pOpdir - Operation direction 1: IN, 0:BOTH
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xMBOpdirConfig(rtk_uint32 *pOpdir)
-{
- return rtl8367c_getAsicRegBit(RTL8367C_DOT1X_CFG_REG, RTL8367C_DOT1X_MAC_OPDIR_OFFSET, pOpdir);
-}
-/* Function Name:
- * rtl8367c_setAsic1xProcConfig
- * Description:
- * Set 802.1x unauth. behavior configuration
- * Input:
- * port - Physical port number (0~7)
- * proc - 802.1x unauth. behavior configuration 0:drop 1:trap to CPU 2:Guest VLAN
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * RT_ERR_DOT1X_PROC - Unauthorized behavior error
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xProcConfig(rtk_uint32 port, rtk_uint32 proc)
-{
-
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- if(proc >= DOT1X_UNAUTH_END)
- return RT_ERR_DOT1X_PROC;
-
- if(port < 8)
- {
- return rtl8367c_setAsicRegBits(RTL8367C_DOT1X_UNAUTH_ACT_BASE, RTL8367C_DOT1X_UNAUTH_ACT_MASK(port),proc);
- }
- else
- {
- return rtl8367c_setAsicRegBits(RTL8367C_REG_DOT1X_UNAUTH_ACT_W1, RTL8367C_DOT1X_UNAUTH_ACT_MASK(port),proc);
- }
-}
-/* Function Name:
- * rtl8367c_getAsic1xProcConfig
- * Description:
- * Get 802.1x unauth. behavior configuration
- * Input:
- * port - Physical port number (0~7)
- * pProc - 802.1x unauth. behavior configuration 0:drop 1:trap to CPU 2:Guest VLAN
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_PORT_ID - Invalid port number
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xProcConfig(rtk_uint32 port, rtk_uint32* pProc)
-{
- if(port >= RTL8367C_PORTNO)
- return RT_ERR_PORT_ID;
-
- if(port < 8)
- return rtl8367c_getAsicRegBits(RTL8367C_DOT1X_UNAUTH_ACT_BASE, RTL8367C_DOT1X_UNAUTH_ACT_MASK(port),pProc);
- else
- return rtl8367c_getAsicRegBits(RTL8367C_REG_DOT1X_UNAUTH_ACT_W1, RTL8367C_DOT1X_UNAUTH_ACT_MASK(port),pProc);
-}
-/* Function Name:
- * rtl8367c_setAsic1xGuestVidx
- * Description:
- * Set 802.1x guest vlan index
- * Input:
- * index - 802.1x guest vlan index (0~31)
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_DOT1X_GVLANIDX - Invalid cvid index
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xGuestVidx(rtk_uint32 index)
-{
- if(index >= RTL8367C_CVIDXNO)
- return RT_ERR_DOT1X_GVLANIDX;
-
- return rtl8367c_setAsicRegBits(RTL8367C_DOT1X_CFG_REG, RTL8367C_DOT1X_GVIDX_MASK, index);
-}
-/* Function Name:
- * rtl8367c_getAsic1xGuestVidx
- * Description:
- * Get 802.1x guest vlan index
- * Input:
- * pIndex - 802.1x guest vlan index (0~31)
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xGuestVidx(rtk_uint32 *pIndex)
-{
- return rtl8367c_getAsicRegBits(RTL8367C_DOT1X_CFG_REG, RTL8367C_DOT1X_GVIDX_MASK, pIndex);
-}
-/* Function Name:
- * rtl8367c_setAsic1xGVOpdir
- * Description:
- * Set 802.1x guest vlan talk to auth. DA
- * Input:
- * enabled - 0:disable 1:enable
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xGVOpdir(rtk_uint32 enabled)
-{
- return rtl8367c_setAsicRegBit(RTL8367C_DOT1X_CFG_REG, RTL8367C_DOT1X_GVOPDIR_OFFSET, enabled);
-}
-/* Function Name:
- * rtl8367c_getAsic1xGVOpdir
- * Description:
- * Get 802.1x guest vlan talk to auth. DA
- * Input:
- * pEnabled - 0:disable 1:enable
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xGVOpdir(rtk_uint32 *pEnabled)
-{
- return rtl8367c_getAsicRegBit(RTL8367C_DOT1X_CFG_REG, RTL8367C_DOT1X_GVOPDIR_OFFSET, pEnabled);
-}
-/* Function Name:
- * rtl8367c_setAsic1xTrapPriority
- * Description:
- * Set 802.1x Trap priority
- * Input:
- * priority - priority (0~7)
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * RT_ERR_QOS_INT_PRIORITY - Invalid priority
- * Note:
- * None
- */
-ret_t rtl8367c_setAsic1xTrapPriority(rtk_uint32 priority)
-{
- if(priority > RTL8367C_PRIMAX)
- return RT_ERR_QOS_INT_PRIORITY;
-
- return rtl8367c_setAsicRegBits(RTL8367C_REG_QOS_TRAP_PRIORITY0, RTL8367C_DOT1X_PRIORTY_MASK,priority);
-}
-/* Function Name:
- * rtl8367c_getAsic1xTrapPriority
- * Description:
- * Get 802.1x Trap priority
- * Input:
- * pPriority - priority (0~7)
- * Output:
- * None
- * Return:
- * RT_ERR_OK - Success
- * RT_ERR_SMI - SMI access error
- * Note:
- * None
- */
-ret_t rtl8367c_getAsic1xTrapPriority(rtk_uint32 *pPriority)
-{
- return rtl8367c_getAsicRegBits(RTL8367C_REG_QOS_TRAP_PRIORITY0, RTL8367C_DOT1X_PRIORTY_MASK, pPriority);
-}
-