/* * 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: 42321 $ * $Date: 2013-08-26 13:51:29 +0800 (¶g¤@, 26 ¤K¤ë 2013) $ * * Purpose : RTL8367C switch high-level API for RTL8367C * Feature : OAM related functions * */ #ifndef _RTL8367C_ASICDRV_OAM_H_ #define _RTL8367C_ASICDRV_OAM_H_ #include enum OAMPARACT { OAM_PARFWD = 0, OAM_PARLB, OAM_PARDISCARD, OAM_PARFWDCPU }; enum OAMMULACT { OAM_MULFWD = 0, OAM_MULDISCARD, OAM_MULCPU }; extern ret_t rtl8367c_setAsicOamParser(rtk_uint32 port, rtk_uint32 parser); extern ret_t rtl8367c_getAsicOamParser(rtk_uint32 port, rtk_uint32* pParser); extern ret_t rtl8367c_setAsicOamMultiplexer(rtk_uint32 port, rtk_uint32 multiplexer); extern ret_t rtl8367c_getAsicOamMultiplexer(rtk_uint32 port, rtk_uint32* pMultiplexer); extern ret_t rtl8367c_setAsicOamCpuPri(rtk_uint32 priority); extern ret_t rtl8367c_getAsicOamCpuPri(rtk_uint32 *pPriority); extern ret_t rtl8367c_setAsicOamEnable(rtk_uint32 enabled); extern ret_t rtl8367c_getAsicOamEnable(rtk_uint32 *pEnabled); #endif /*_RTL8367C_ASICDRV_OAM_H_*/