KSZ9563 3-port Gigabit Ethernet switch driver. More...
#include "core/nic.h"
Go to the source code of this file.
Functions | |
error_t | ksz9563Init (NetInterface *interface) |
KSZ9563 Ethernet switch initialization. More... | |
void | ksz9563InitHook (NetInterface *interface) |
KSZ9563 custom configuration. More... | |
void | ksz9563Tick (NetInterface *interface) |
KSZ9563 timer handler. More... | |
void | ksz9563EnableIrq (NetInterface *interface) |
Enable interrupts. More... | |
void | ksz9563DisableIrq (NetInterface *interface) |
Disable interrupts. More... | |
void | ksz9563EventHandler (NetInterface *interface) |
KSZ9563 event handler. More... | |
error_t | ksz9563TagFrame (NetInterface *interface, NetBuffer *buffer, size_t *offset, NetTxAncillary *ancillary) |
Add tail tag to Ethernet frame. More... | |
error_t | ksz9563UntagFrame (NetInterface *interface, uint8_t **frame, size_t *length, NetRxAncillary *ancillary) |
Decode tail tag from incoming Ethernet frame. More... | |
bool_t | ksz9563GetLinkState (NetInterface *interface, uint8_t port) |
Get link state. More... | |
uint32_t | ksz9563GetLinkSpeed (NetInterface *interface, uint8_t port) |
Get link speed. More... | |
NicDuplexMode | ksz9563GetDuplexMode (NetInterface *interface, uint8_t port) |
Get duplex mode. More... | |
void | ksz9563SetPortState (NetInterface *interface, uint8_t port, SwitchPortState state) |
Set port state. More... | |
SwitchPortState | ksz9563GetPortState (NetInterface *interface, uint8_t port) |
Get port state. More... | |
void | ksz9563SetAgingTime (NetInterface *interface, uint32_t agingTime) |
Set aging time for dynamic filtering entries. More... | |
void | ksz9563EnableIgmpSnooping (NetInterface *interface, bool_t enable) |
Enable IGMP snooping. More... | |
void | ksz9563EnableMldSnooping (NetInterface *interface, bool_t enable) |
Enable MLD snooping. More... | |
void | ksz9563EnableRsvdMcastTable (NetInterface *interface, bool_t enable) |
Enable reserved multicast table. More... | |
error_t | ksz9563AddStaticFdbEntry (NetInterface *interface, const SwitchFdbEntry *entry) |
Add a new entry to the static MAC table. More... | |
error_t | ksz9563DeleteStaticFdbEntry (NetInterface *interface, const SwitchFdbEntry *entry) |
Remove an entry from the static MAC table. More... | |
error_t | ksz9563GetStaticFdbEntry (NetInterface *interface, uint_t index, SwitchFdbEntry *entry) |
Read an entry from the static MAC table. More... | |
void | ksz9563FlushStaticFdbTable (NetInterface *interface) |
Flush static MAC table. More... | |
error_t | ksz9563GetDynamicFdbEntry (NetInterface *interface, uint_t index, SwitchFdbEntry *entry) |
Read an entry from the dynamic MAC table. More... | |
void | ksz9563FlushDynamicFdbTable (NetInterface *interface, uint8_t port) |
Flush dynamic MAC table. More... | |
void | ksz9563SetUnknownMcastFwdPorts (NetInterface *interface, bool_t enable, uint32_t forwardPorts) |
Set forward ports for unknown multicast packets. More... | |
void | ksz9563WritePhyReg (NetInterface *interface, uint8_t port, uint8_t address, uint16_t data) |
Write PHY register. More... | |
uint16_t | ksz9563ReadPhyReg (NetInterface *interface, uint8_t port, uint8_t address) |
Read PHY register. More... | |
void | ksz9563DumpPhyReg (NetInterface *interface, uint8_t port) |
Dump PHY registers for debugging purpose. More... | |
void | ksz9563WriteMmdReg (NetInterface *interface, uint8_t port, uint8_t devAddr, uint16_t regAddr, uint16_t data) |
Write MMD register. More... | |
uint16_t | ksz9563ReadMmdReg (NetInterface *interface, uint8_t port, uint8_t devAddr, uint16_t regAddr) |
Read MMD register. More... | |
void | ksz9563WriteSwitchReg8 (NetInterface *interface, uint16_t address, uint8_t data) |
Write switch register (8 bits) More... | |
uint8_t | ksz9563ReadSwitchReg8 (NetInterface *interface, uint16_t address) |
Read switch register (8 bits) More... | |
void | ksz9563WriteSwitchReg16 (NetInterface *interface, uint16_t address, uint16_t data) |
Write switch register (16 bits) More... | |
uint16_t | ksz9563ReadSwitchReg16 (NetInterface *interface, uint16_t address) |
Read switch register (16 bits) More... | |
void | ksz9563WriteSwitchReg32 (NetInterface *interface, uint16_t address, uint32_t data) |
Write switch register (32 bits) More... | |
uint32_t | ksz9563ReadSwitchReg32 (NetInterface *interface, uint16_t address) |
Read switch register (32 bits) More... | |
Variables | |
const SwitchDriver | ksz9563SwitchDriver |
KSZ9563 Ethernet switch driver. More... | |
Detailed Description
KSZ9563 3-port Gigabit Ethernet switch driver.
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneTCP Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- Version
- 2.4.4
Definition in file ksz9563_driver.h.
Macro Definition Documentation
◆ KSZ9563_802_1P_PRIO_MAPPING0
#define KSZ9563_802_1P_PRIO_MAPPING0 0x0338 |
Definition at line 146 of file ksz9563_driver.h.
◆ KSZ9563_802_1P_PRIO_MAPPING1
#define KSZ9563_802_1P_PRIO_MAPPING1 0x0339 |
Definition at line 147 of file ksz9563_driver.h.
◆ KSZ9563_802_1P_PRIO_MAPPING2
#define KSZ9563_802_1P_PRIO_MAPPING2 0x033A |
Definition at line 148 of file ksz9563_driver.h.
◆ KSZ9563_802_1P_PRIO_MAPPING3
#define KSZ9563_802_1P_PRIO_MAPPING3 0x033B |
Definition at line 149 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL
#define KSZ9563_ALU_TABLE_CTRL 0x0418 |
Definition at line 195 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_ACTION
#define KSZ9563_ALU_TABLE_CTRL_ACTION 0x00000003 |
Definition at line 1067 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_ACTION_NOP
#define KSZ9563_ALU_TABLE_CTRL_ACTION_NOP 0x00000000 |
Definition at line 1068 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_ACTION_READ
#define KSZ9563_ALU_TABLE_CTRL_ACTION_READ 0x00000002 |
Definition at line 1070 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_ACTION_SEARCH
#define KSZ9563_ALU_TABLE_CTRL_ACTION_SEARCH 0x00000003 |
Definition at line 1071 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_ACTION_WRITE
#define KSZ9563_ALU_TABLE_CTRL_ACTION_WRITE 0x00000001 |
Definition at line 1069 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_DIRECT
#define KSZ9563_ALU_TABLE_CTRL_DIRECT 0x00000004 |
Definition at line 1066 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_START_FINISH
#define KSZ9563_ALU_TABLE_CTRL_START_FINISH 0x00000080 |
Definition at line 1063 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_VALID
#define KSZ9563_ALU_TABLE_CTRL_VALID 0x00000040 |
Definition at line 1064 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_VALID_COUNT
#define KSZ9563_ALU_TABLE_CTRL_VALID_COUNT 0x3FFF0000 |
Definition at line 1062 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_CTRL_VALID_ENTRY_OR_SEARCH_END
#define KSZ9563_ALU_TABLE_CTRL_VALID_ENTRY_OR_SEARCH_END 0x00000020 |
Definition at line 1065 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1
#define KSZ9563_ALU_TABLE_ENTRY1 0x0420 |
Definition at line 197 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1_AGE_COUNT
#define KSZ9563_ALU_TABLE_ENTRY1_AGE_COUNT 0x1C000000 |
Definition at line 1086 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1_DES_FILTER
#define KSZ9563_ALU_TABLE_ENTRY1_DES_FILTER 0x20000000 |
Definition at line 1084 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1_MSTP
#define KSZ9563_ALU_TABLE_ENTRY1_MSTP 0x00000007 |
Definition at line 1087 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1_PRIORITY
#define KSZ9563_ALU_TABLE_ENTRY1_PRIORITY 0x1C000000 |
Definition at line 1085 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1_SRC_FILTER
#define KSZ9563_ALU_TABLE_ENTRY1_SRC_FILTER 0x40000000 |
Definition at line 1083 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY1_STATIC
#define KSZ9563_ALU_TABLE_ENTRY1_STATIC 0x80000000 |
Definition at line 1082 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY2
#define KSZ9563_ALU_TABLE_ENTRY2 0x0424 |
Definition at line 199 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY2_OVERRIDE
#define KSZ9563_ALU_TABLE_ENTRY2_OVERRIDE 0x80000000 |
Definition at line 1090 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY2_PORT1_FORWARD
#define KSZ9563_ALU_TABLE_ENTRY2_PORT1_FORWARD 0x00000001 |
Definition at line 1094 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY2_PORT2_FORWARD
#define KSZ9563_ALU_TABLE_ENTRY2_PORT2_FORWARD 0x00000002 |
Definition at line 1093 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY2_PORT3_FORWARD
#define KSZ9563_ALU_TABLE_ENTRY2_PORT3_FORWARD 0x00000004 |
Definition at line 1092 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY2_PORT_FORWARD
#define KSZ9563_ALU_TABLE_ENTRY2_PORT_FORWARD 0x00000007 |
Definition at line 1091 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY3
#define KSZ9563_ALU_TABLE_ENTRY3 0x0428 |
Definition at line 202 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY3_FID
#define KSZ9563_ALU_TABLE_ENTRY3_FID 0x007F0000 |
Definition at line 1097 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY3_MAC_ADDR_MSB
#define KSZ9563_ALU_TABLE_ENTRY3_MAC_ADDR_MSB 0x0000FFFF |
Definition at line 1098 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY4
#define KSZ9563_ALU_TABLE_ENTRY4 0x042C |
Definition at line 204 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY4_MAC_ADDR_LSB
#define KSZ9563_ALU_TABLE_ENTRY4_MAC_ADDR_LSB 0xFFFFFFFF |
Definition at line 1101 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX0
#define KSZ9563_ALU_TABLE_ENTRY_INDEX0 0x0316 |
Definition at line 133 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX0_ALMOST_FULL_ENTRY_INDEX
#define KSZ9563_ALU_TABLE_ENTRY_INDEX0_ALMOST_FULL_ENTRY_INDEX 0x0FFF |
Definition at line 932 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX0_FAIL_WRITE_INDEX
#define KSZ9563_ALU_TABLE_ENTRY_INDEX0_FAIL_WRITE_INDEX 0x03FF |
Definition at line 933 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX1
#define KSZ9563_ALU_TABLE_ENTRY_INDEX1 0x0318 |
Definition at line 134 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX1_FAIL_LEARN_INDEX
#define KSZ9563_ALU_TABLE_ENTRY_INDEX1_FAIL_LEARN_INDEX 0x03FF |
Definition at line 936 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX2
#define KSZ9563_ALU_TABLE_ENTRY_INDEX2 0x031A |
Definition at line 135 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_ENTRY_INDEX2_CPU_ACCESS_INDEX
#define KSZ9563_ALU_TABLE_ENTRY_INDEX2_CPU_ACCESS_INDEX 0x03FF |
Definition at line 939 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INDEX0
#define KSZ9563_ALU_TABLE_INDEX0 0x0410 |
Definition at line 193 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INDEX0_FID_INDEX
#define KSZ9563_ALU_TABLE_INDEX0_FID_INDEX 0x007F0000 |
Definition at line 1055 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INDEX0_MAC_INDEX_MSB
#define KSZ9563_ALU_TABLE_INDEX0_MAC_INDEX_MSB 0x0000FFFF |
Definition at line 1056 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INDEX1
#define KSZ9563_ALU_TABLE_INDEX1 0x0414 |
Definition at line 194 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INDEX1_MAC_INDEX_LSB
#define KSZ9563_ALU_TABLE_INDEX1_MAC_INDEX_LSB 0xFFFFFFFF |
Definition at line 1059 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INT
#define KSZ9563_ALU_TABLE_INT 0x0314 |
Definition at line 131 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INT_ALMOST_FULL
#define KSZ9563_ALU_TABLE_INT_ALMOST_FULL 0x02 |
Definition at line 923 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INT_LEARN_FAIL
#define KSZ9563_ALU_TABLE_INT_LEARN_FAIL 0x04 |
Definition at line 922 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_INT_WRITE_FAIL
#define KSZ9563_ALU_TABLE_INT_WRITE_FAIL 0x01 |
Definition at line 924 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_MASK
#define KSZ9563_ALU_TABLE_MASK 0x0315 |
Definition at line 132 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_MASK_ALMOST_FULL
#define KSZ9563_ALU_TABLE_MASK_ALMOST_FULL 0x02 |
Definition at line 928 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_MASK_LEARN_FAIL
#define KSZ9563_ALU_TABLE_MASK_LEARN_FAIL 0x04 |
Definition at line 927 of file ksz9563_driver.h.
◆ KSZ9563_ALU_TABLE_MASK_WRITE_FAIL
#define KSZ9563_ALU_TABLE_MASK_WRITE_FAIL 0x01 |
Definition at line 929 of file ksz9563_driver.h.
◆ KSZ9563_ANAR
#define KSZ9563_ANAR 0x04 |
Definition at line 74 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_100BT4
#define KSZ9563_ANAR_100BT4 0x0200 |
Definition at line 630 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_100BTX_FD
#define KSZ9563_ANAR_100BTX_FD 0x0100 |
Definition at line 631 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_100BTX_HD
#define KSZ9563_ANAR_100BTX_HD 0x0080 |
Definition at line 632 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_10BT_FD
#define KSZ9563_ANAR_10BT_FD 0x0040 |
Definition at line 633 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_10BT_HD
#define KSZ9563_ANAR_10BT_HD 0x0020 |
Definition at line 634 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_NEXT_PAGE
#define KSZ9563_ANAR_NEXT_PAGE 0x8000 |
Definition at line 627 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_PAUSE
#define KSZ9563_ANAR_PAUSE 0x0C00 |
Definition at line 629 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_REMOTE_FAULT
#define KSZ9563_ANAR_REMOTE_FAULT 0x2000 |
Definition at line 628 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_SELECTOR
#define KSZ9563_ANAR_SELECTOR 0x001F |
Definition at line 635 of file ksz9563_driver.h.
◆ KSZ9563_ANAR_SELECTOR_DEFAULT
#define KSZ9563_ANAR_SELECTOR_DEFAULT 0x0001 |
Definition at line 636 of file ksz9563_driver.h.
◆ KSZ9563_ANER
#define KSZ9563_ANER 0x06 |
Definition at line 76 of file ksz9563_driver.h.
◆ KSZ9563_ANER_LP_AN_ABLE
#define KSZ9563_ANER_LP_AN_ABLE 0x0001 |
Definition at line 656 of file ksz9563_driver.h.
◆ KSZ9563_ANER_LP_NEXT_PAGE_ABLE
#define KSZ9563_ANER_LP_NEXT_PAGE_ABLE 0x0008 |
Definition at line 653 of file ksz9563_driver.h.
◆ KSZ9563_ANER_NEXT_PAGE_ABLE
#define KSZ9563_ANER_NEXT_PAGE_ABLE 0x0004 |
Definition at line 654 of file ksz9563_driver.h.
◆ KSZ9563_ANER_PAGE_RECEIVED
#define KSZ9563_ANER_PAGE_RECEIVED 0x0002 |
Definition at line 655 of file ksz9563_driver.h.
◆ KSZ9563_ANER_PAR_DETECT_FAULT
#define KSZ9563_ANER_PAR_DETECT_FAULT 0x0010 |
Definition at line 652 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR
#define KSZ9563_ANLPAR 0x05 |
Definition at line 75 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_100BT4
#define KSZ9563_ANLPAR_100BT4 0x0200 |
Definition at line 643 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_100BTX_FD
#define KSZ9563_ANLPAR_100BTX_FD 0x0100 |
Definition at line 644 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_100BTX_HD
#define KSZ9563_ANLPAR_100BTX_HD 0x0080 |
Definition at line 645 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_10BT_FD
#define KSZ9563_ANLPAR_10BT_FD 0x0040 |
Definition at line 646 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_10BT_HD
#define KSZ9563_ANLPAR_10BT_HD 0x0020 |
Definition at line 647 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_ACK
#define KSZ9563_ANLPAR_ACK 0x4000 |
Definition at line 640 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_NEXT_PAGE
#define KSZ9563_ANLPAR_NEXT_PAGE 0x8000 |
Definition at line 639 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_PAUSE
#define KSZ9563_ANLPAR_PAUSE 0x0C00 |
Definition at line 642 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_REMOTE_FAULT
#define KSZ9563_ANLPAR_REMOTE_FAULT 0x2000 |
Definition at line 641 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_SELECTOR
#define KSZ9563_ANLPAR_SELECTOR 0x001F |
Definition at line 648 of file ksz9563_driver.h.
◆ KSZ9563_ANLPAR_SELECTOR_DEFAULT
#define KSZ9563_ANLPAR_SELECTOR_DEFAULT 0x0001 |
Definition at line 649 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR
#define KSZ9563_ANLPNPR 0x08 |
Definition at line 78 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR_ACK
#define KSZ9563_ANLPNPR_ACK 0x4000 |
Definition at line 667 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR_ACK2
#define KSZ9563_ANLPNPR_ACK2 0x1000 |
Definition at line 669 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR_MESSAGE
#define KSZ9563_ANLPNPR_MESSAGE 0x07FF |
Definition at line 671 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR_MSG_PAGE
#define KSZ9563_ANLPNPR_MSG_PAGE 0x2000 |
Definition at line 668 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR_NEXT_PAGE
#define KSZ9563_ANLPNPR_NEXT_PAGE 0x8000 |
Definition at line 666 of file ksz9563_driver.h.
◆ KSZ9563_ANLPNPR_TOGGLE
#define KSZ9563_ANLPNPR_TOGGLE 0x0800 |
Definition at line 670 of file ksz9563_driver.h.
◆ KSZ9563_ANNPR
#define KSZ9563_ANNPR 0x07 |
Definition at line 77 of file ksz9563_driver.h.
◆ KSZ9563_ANNPR_ACK2
#define KSZ9563_ANNPR_ACK2 0x1000 |
Definition at line 661 of file ksz9563_driver.h.
◆ KSZ9563_ANNPR_MESSAGE
#define KSZ9563_ANNPR_MESSAGE 0x07FF |
Definition at line 663 of file ksz9563_driver.h.
◆ KSZ9563_ANNPR_MSG_PAGE
#define KSZ9563_ANNPR_MSG_PAGE 0x2000 |
Definition at line 660 of file ksz9563_driver.h.
◆ KSZ9563_ANNPR_NEXT_PAGE
#define KSZ9563_ANNPR_NEXT_PAGE 0x8000 |
Definition at line 659 of file ksz9563_driver.h.
◆ KSZ9563_ANNPR_TOGGLE
#define KSZ9563_ANNPR_TOGGLE 0x0800 |
Definition at line 662 of file ksz9563_driver.h.
◆ KSZ9563_AUTOMDI
#define KSZ9563_AUTOMDI 0x1C |
Definition at line 89 of file ksz9563_driver.h.
◆ KSZ9563_AUTOMDI_MDI_SET
#define KSZ9563_AUTOMDI_MDI_SET 0x0080 |
Definition at line 742 of file ksz9563_driver.h.
◆ KSZ9563_AUTOMDI_SWAP_OFF
#define KSZ9563_AUTOMDI_SWAP_OFF 0x0040 |
Definition at line 743 of file ksz9563_driver.h.
◆ KSZ9563_AVB_CBS_STRATEGY
#define KSZ9563_AVB_CBS_STRATEGY 0x030E |
Definition at line 126 of file ksz9563_driver.h.
◆ KSZ9563_AVB_CBS_STRATEGY_POLICING_CREDIT_ACCOUNTING
#define KSZ9563_AVB_CBS_STRATEGY_POLICING_CREDIT_ACCOUNTING 0x0001 |
Definition at line 883 of file ksz9563_driver.h.
◆ KSZ9563_AVB_CBS_STRATEGY_SHAPING_CREDIT_ACCOUNTING
#define KSZ9563_AVB_CBS_STRATEGY_SHAPING_CREDIT_ACCOUNTING 0x0002 |
Definition at line 882 of file ksz9563_driver.h.
◆ KSZ9563_BMCR
#define KSZ9563_BMCR 0x00 |
Definition at line 70 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_AN_EN
#define KSZ9563_BMCR_AN_EN 0x1000 |
Definition at line 597 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_COL_TEST
#define KSZ9563_BMCR_COL_TEST 0x0080 |
Definition at line 602 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_DUPLEX_MODE
#define KSZ9563_BMCR_DUPLEX_MODE 0x0100 |
Definition at line 601 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_ISOLATE
#define KSZ9563_BMCR_ISOLATE 0x0400 |
Definition at line 599 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_LOOPBACK
#define KSZ9563_BMCR_LOOPBACK 0x4000 |
Definition at line 595 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_POWER_DOWN
#define KSZ9563_BMCR_POWER_DOWN 0x0800 |
Definition at line 598 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_RESET
#define KSZ9563_BMCR_RESET 0x8000 |
Definition at line 594 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_RESTART_AN
#define KSZ9563_BMCR_RESTART_AN 0x0200 |
Definition at line 600 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_SPEED_SEL_LSB
#define KSZ9563_BMCR_SPEED_SEL_LSB 0x2000 |
Definition at line 596 of file ksz9563_driver.h.
◆ KSZ9563_BMCR_SPEED_SEL_MSB
#define KSZ9563_BMCR_SPEED_SEL_MSB 0x0040 |
Definition at line 603 of file ksz9563_driver.h.
◆ KSZ9563_BMSR
#define KSZ9563_BMSR 0x01 |
Definition at line 71 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_100BT4
#define KSZ9563_BMSR_100BT4 0x8000 |
Definition at line 606 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_100BTX_FD
#define KSZ9563_BMSR_100BTX_FD 0x4000 |
Definition at line 607 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_100BTX_HD
#define KSZ9563_BMSR_100BTX_HD 0x2000 |
Definition at line 608 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_10BT_FD
#define KSZ9563_BMSR_10BT_FD 0x1000 |
Definition at line 609 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_10BT_HD
#define KSZ9563_BMSR_10BT_HD 0x0800 |
Definition at line 610 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_AN_CAPABLE
#define KSZ9563_BMSR_AN_CAPABLE 0x0008 |
Definition at line 615 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_AN_COMPLETE
#define KSZ9563_BMSR_AN_COMPLETE 0x0020 |
Definition at line 613 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_EXTENDED_CAPABLE
#define KSZ9563_BMSR_EXTENDED_CAPABLE 0x0001 |
Definition at line 618 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_EXTENDED_STATUS
#define KSZ9563_BMSR_EXTENDED_STATUS 0x0100 |
Definition at line 611 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_JABBER_DETECT
#define KSZ9563_BMSR_JABBER_DETECT 0x0002 |
Definition at line 617 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_LINK_STATUS
#define KSZ9563_BMSR_LINK_STATUS 0x0004 |
Definition at line 616 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_MF_PREAMBLE_SUPPR
#define KSZ9563_BMSR_MF_PREAMBLE_SUPPR 0x0040 |
Definition at line 612 of file ksz9563_driver.h.
◆ KSZ9563_BMSR_REMOTE_FAULT
#define KSZ9563_BMSR_REMOTE_FAULT 0x0010 |
Definition at line 614 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID0
#define KSZ9563_CHIP_ID0 0x0000 |
Definition at line 98 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID0_DEFAULT
#define KSZ9563_CHIP_ID0_DEFAULT 0x00 |
Definition at line 765 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID1
#define KSZ9563_CHIP_ID1 0x0001 |
Definition at line 99 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID1_DEFAULT
#define KSZ9563_CHIP_ID1_DEFAULT 0x98 |
Definition at line 768 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID2
#define KSZ9563_CHIP_ID2 0x0002 |
Definition at line 100 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID2_DEFAULT
#define KSZ9563_CHIP_ID2_DEFAULT 0x93 |
Definition at line 771 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID3
#define KSZ9563_CHIP_ID3 0x0003 |
Definition at line 101 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID3_GLOBAL_SOFT_RESET
#define KSZ9563_CHIP_ID3_GLOBAL_SOFT_RESET 0x01 |
Definition at line 775 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID3_REVISION_ID
#define KSZ9563_CHIP_ID3_REVISION_ID 0xF0 |
Definition at line 774 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID4
#define KSZ9563_CHIP_ID4 0x000F |
Definition at line 103 of file ksz9563_driver.h.
◆ KSZ9563_CHIP_ID4_SKU_ID
#define KSZ9563_CHIP_ID4_SKU_ID 0xFF |
Definition at line 782 of file ksz9563_driver.h.
◆ KSZ9563_DPMAPCSS
#define KSZ9563_DPMAPCSS 0x13 |
Definition at line 86 of file ksz9563_driver.h.
◆ KSZ9563_DPMAPCSS_1000BT_LINK_STATUS
#define KSZ9563_DPMAPCSS_1000BT_LINK_STATUS 0x0002 |
Definition at line 720 of file ksz9563_driver.h.
◆ KSZ9563_DPMAPCSS_100BTX_LINK_STATUS
#define KSZ9563_DPMAPCSS_100BTX_LINK_STATUS 0x0001 |
Definition at line 721 of file ksz9563_driver.h.
◆ KSZ9563_DYNAMIC_MAC_TABLE_SIZE
#define KSZ9563_DYNAMIC_MAC_TABLE_SIZE 4096 |
Definition at line 55 of file ksz9563_driver.h.
◆ KSZ9563_GBCR
#define KSZ9563_GBCR 0x09 |
Definition at line 79 of file ksz9563_driver.h.
◆ KSZ9563_GBCR_1000BT_FD
#define KSZ9563_GBCR_1000BT_FD 0x0200 |
Definition at line 678 of file ksz9563_driver.h.
◆ KSZ9563_GBCR_1000BT_HD
#define KSZ9563_GBCR_1000BT_HD 0x0100 |
Definition at line 679 of file ksz9563_driver.h.
◆ KSZ9563_GBCR_MS_MAN_CONF_EN
#define KSZ9563_GBCR_MS_MAN_CONF_EN 0x1000 |
Definition at line 675 of file ksz9563_driver.h.
◆ KSZ9563_GBCR_MS_MAN_CONF_VAL
#define KSZ9563_GBCR_MS_MAN_CONF_VAL 0x0800 |
Definition at line 676 of file ksz9563_driver.h.
◆ KSZ9563_GBCR_PORT_TYPE
#define KSZ9563_GBCR_PORT_TYPE 0x0400 |
Definition at line 677 of file ksz9563_driver.h.
◆ KSZ9563_GBCR_TEST_MODE
#define KSZ9563_GBCR_TEST_MODE 0xE000 |
Definition at line 674 of file ksz9563_driver.h.
◆ KSZ9563_GBESR
#define KSZ9563_GBESR 0x0F |
Definition at line 83 of file ksz9563_driver.h.
◆ KSZ9563_GBESR_1000BT_FD
#define KSZ9563_GBESR_1000BT_FD 0x2000 |
Definition at line 701 of file ksz9563_driver.h.
◆ KSZ9563_GBESR_1000BT_HD
#define KSZ9563_GBESR_1000BT_HD 0x1000 |
Definition at line 702 of file ksz9563_driver.h.
◆ KSZ9563_GBESR_1000BX_FD
#define KSZ9563_GBESR_1000BX_FD 0x8000 |
Definition at line 699 of file ksz9563_driver.h.
◆ KSZ9563_GBESR_1000BX_HD
#define KSZ9563_GBESR_1000BX_HD 0x4000 |
Definition at line 700 of file ksz9563_driver.h.
◆ KSZ9563_GBSR
#define KSZ9563_GBSR 0x0A |
Definition at line 80 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_IDLE_ERR_COUNT
#define KSZ9563_GBSR_IDLE_ERR_COUNT 0x00FF |
Definition at line 688 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_LOCAL_RECEIVER_STATUS
#define KSZ9563_GBSR_LOCAL_RECEIVER_STATUS 0x2000 |
Definition at line 684 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_LP_1000BT_FD
#define KSZ9563_GBSR_LP_1000BT_FD 0x0800 |
Definition at line 686 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_LP_1000BT_HD
#define KSZ9563_GBSR_LP_1000BT_HD 0x0400 |
Definition at line 687 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_MS_CONF_FAULT
#define KSZ9563_GBSR_MS_CONF_FAULT 0x8000 |
Definition at line 682 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_MS_CONF_RES
#define KSZ9563_GBSR_MS_CONF_RES 0x4000 |
Definition at line 683 of file ksz9563_driver.h.
◆ KSZ9563_GBSR_REMOTE_RECEIVER_STATUS
#define KSZ9563_GBSR_REMOTE_RECEIVER_STATUS 0x1000 |
Definition at line 685 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_INT_MASK
#define KSZ9563_GLOBAL_INT_MASK 0x0014 |
Definition at line 105 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_INT_MASK_GPIO_TRIG_TS_UNIT
#define KSZ9563_GLOBAL_INT_MASK_GPIO_TRIG_TS_UNIT 0x40000000 |
Definition at line 790 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_INT_MASK_LUE
#define KSZ9563_GLOBAL_INT_MASK_LUE 0x80000000 |
Definition at line 789 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_INT_STAT
#define KSZ9563_GLOBAL_INT_STAT 0x0010 |
Definition at line 104 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_INT_STAT_GPIO_TRIG_TS_UNIT
#define KSZ9563_GLOBAL_INT_STAT_GPIO_TRIG_TS_UNIT 0x40000000 |
Definition at line 786 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_INT_STAT_LUE
#define KSZ9563_GLOBAL_INT_STAT_LUE 0x80000000 |
Definition at line 785 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_MASK
#define KSZ9563_GLOBAL_PORT_INT_MASK 0x001C |
Definition at line 107 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_MASK_PORT1
#define KSZ9563_GLOBAL_PORT_INT_MASK_PORT1 0x00000001 |
Definition at line 800 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_MASK_PORT2
#define KSZ9563_GLOBAL_PORT_INT_MASK_PORT2 0x00000002 |
Definition at line 799 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_MASK_PORT3
#define KSZ9563_GLOBAL_PORT_INT_MASK_PORT3 0x00000004 |
Definition at line 798 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_STAT
#define KSZ9563_GLOBAL_PORT_INT_STAT 0x0018 |
Definition at line 106 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_STAT_PORT1
#define KSZ9563_GLOBAL_PORT_INT_STAT_PORT1 0x00000001 |
Definition at line 795 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_STAT_PORT2
#define KSZ9563_GLOBAL_PORT_INT_STAT_PORT2 0x00000002 |
Definition at line 794 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_INT_STAT_PORT3
#define KSZ9563_GLOBAL_PORT_INT_STAT_PORT3 0x00000004 |
Definition at line 793 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL
#define KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL 0x0370 |
Definition at line 183 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_IGMP_SNOOP_EN
#define KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_IGMP_SNOOP_EN 0x40 |
Definition at line 1002 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_MLD_SNOOP_EN
#define KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_MLD_SNOOP_EN 0x04 |
Definition at line 1004 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_MLD_SNOOP_OPT
#define KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_MLD_SNOOP_OPT 0x08 |
Definition at line 1003 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_SNIFF_MODE_SEL
#define KSZ9563_GLOBAL_PORT_MIRROR_SNOOP_CTRL_SNIFF_MODE_SEL 0x01 |
Definition at line 1005 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL
#define KSZ9563_GLOBAL_PTP_CLK_CTRL 0x0500 |
Definition at line 206 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_CONTINUOUS_ADJ
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_CONTINUOUS_ADJ 0x0004 |
Definition at line 1137 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_EN
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_EN 0x0002 |
Definition at line 1138 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_LOAD
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_LOAD 0x0008 |
Definition at line 1136 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_READ
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_READ 0x0010 |
Definition at line 1135 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_RESET
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_RESET 0x0001 |
Definition at line 1139 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_STEP_ADJ
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_CLK_STEP_ADJ 0x0040 |
Definition at line 1133 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_STEP_DIR
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_PTP_STEP_DIR 0x0020 |
Definition at line 1134 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_CTRL_SW_FREQ_ADJ_DIS
#define KSZ9563_GLOBAL_PTP_CLK_CTRL_SW_FREQ_ADJ_DIS 0x8000 |
Definition at line 1132 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H
#define KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H 0x050C |
Definition at line 212 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H_PTP_RATE_DIR
#define KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H_PTP_RATE_DIR 0x8000 |
Definition at line 1145 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H_PTP_RTC_SUB_NS_29_16
#define KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H_PTP_RTC_SUB_NS_29_16 0x3FFF |
Definition at line 1147 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H_PTP_TEMP_ADJ_MODE
#define KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_H_PTP_TEMP_ADJ_MODE 0x4000 |
Definition at line 1146 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_L
#define KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_L 0x050E |
Definition at line 213 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_L_PTP_RTC_SUB_NS_15_0
#define KSZ9563_GLOBAL_PTP_CLK_SUB_NS_RATE_L_PTP_RTC_SUB_NS_15_0 0xFFFF |
Definition at line 1150 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_TEMP_ADJ_DURATION_H
#define KSZ9563_GLOBAL_PTP_CLK_TEMP_ADJ_DURATION_H 0x0510 |
Definition at line 214 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_CLK_TEMP_ADJ_DURATION_L
#define KSZ9563_GLOBAL_PTP_CLK_TEMP_ADJ_DURATION_L 0x0512 |
Definition at line 215 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_DOMAIN_VERSION
#define KSZ9563_GLOBAL_PTP_DOMAIN_VERSION 0x0518 |
Definition at line 218 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_DOMAIN_VERSION_PTP_DOMAIN
#define KSZ9563_GLOBAL_PTP_DOMAIN_VERSION_PTP_DOMAIN 0x00FF |
Definition at line 1177 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_DOMAIN_VERSION_PTP_VERSION
#define KSZ9563_GLOBAL_PTP_DOMAIN_VERSION_PTP_VERSION 0x0F00 |
Definition at line 1176 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1 0x0514 |
Definition at line 216 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_E2E_CLK_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_E2E_CLK_MODE 0x0000 |
Definition at line 1157 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_ETH_PTP_DETECT
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_ETH_PTP_DETECT 0x0020 |
Definition at line 1154 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_IEEE_1588_PTP_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_IEEE_1588_PTP_MODE 0x0040 |
Definition at line 1153 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_IPV4_UDP_PTP_DETECT
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_IPV4_UDP_PTP_DETECT 0x0010 |
Definition at line 1155 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_IPV6_UDP_PTP_DETECT
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_IPV6_UDP_PTP_DETECT 0x0008 |
Definition at line 1156 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_MASTER_OC_CLK_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_MASTER_OC_CLK_MODE 0x0002 |
Definition at line 1160 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_ONE_STEP_CLK_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_ONE_STEP_CLK_MODE 0x0001 |
Definition at line 1162 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_P2P_CLK_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_P2P_CLK_MODE 0x0004 |
Definition at line 1158 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_SLAVE_OC_CLK_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_SLAVE_OC_CLK_MODE 0x0000 |
Definition at line 1159 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG1_TWO_STEP_CLK_MODE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG1_TWO_STEP_CLK_MODE 0x0000 |
Definition at line 1161 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2 0x0516 |
Definition at line 217 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_ALT_MASTER_EN
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_ALT_MASTER_EN 0x0800 |
Definition at line 1166 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_DELAY_REQ_RESP
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_DELAY_REQ_RESP 0x0100 |
Definition at line 1169 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_DOMAIN
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_DOMAIN 0x0010 |
Definition at line 1172 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_PDELAY_REQ_RESP
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_PDELAY_REQ_RESP 0x0080 |
Definition at line 1170 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_SYNC_FOLLOW_UP
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_CHECK_SYNC_FOLLOW_UP 0x0200 |
Definition at line 1168 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_DROP_SYNC_FOLLOW_UP_DELAY_REQ
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_DROP_SYNC_FOLLOW_UP_DELAY_REQ 0x0020 |
Definition at line 1171 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_IPV4_UDP_CHECKSUM_EN
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_IPV4_UDP_CHECKSUM_EN 0x0004 |
Definition at line 1173 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_PTP_MSG_PRIO_TX_QUEUE
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_PTP_MSG_PRIO_TX_QUEUE 0x0400 |
Definition at line 1167 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_MSG_CONFIG2_UNICAST_PTP_EN
#define KSZ9563_GLOBAL_PTP_MSG_CONFIG2_UNICAST_PTP_EN 0x1000 |
Definition at line 1165 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_RTC_CLK_NS_H
#define KSZ9563_GLOBAL_PTP_RTC_CLK_NS_H 0x0504 |
Definition at line 208 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_RTC_CLK_NS_L
#define KSZ9563_GLOBAL_PTP_RTC_CLK_NS_L 0x0506 |
Definition at line 209 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_RTC_CLK_PHASE
#define KSZ9563_GLOBAL_PTP_RTC_CLK_PHASE 0x0502 |
Definition at line 207 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_RTC_CLK_PHASE_PTP_RTC_8NS_PHASE
#define KSZ9563_GLOBAL_PTP_RTC_CLK_PHASE_PTP_RTC_8NS_PHASE 0x0007 |
Definition at line 1142 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_RTC_CLK_S_H
#define KSZ9563_GLOBAL_PTP_RTC_CLK_S_H 0x0508 |
Definition at line 210 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_RTC_CLK_S_L
#define KSZ9563_GLOBAL_PTP_RTC_CLK_S_L 0x050A |
Definition at line 211 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX 0x0520 |
Definition at line 219 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_GPIO_PTR_INDEX
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_GPIO_PTR_INDEX 0x00010000 |
Definition at line 1180 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_GPIO_PTR_INDEX_GPIO1
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_GPIO_PTR_INDEX_GPIO1 0x00000000 |
Definition at line 1181 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_GPIO_PTR_INDEX_GPIO2
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_GPIO_PTR_INDEX_GPIO2 0x00010000 |
Definition at line 1182 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX 0x00000003 |
Definition at line 1186 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX_UNIT0
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX_UNIT0 0x00000000 |
Definition at line 1187 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX_UNIT1
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX_UNIT1 0x00000001 |
Definition at line 1188 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX_UNIT2
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TRIGGER_PTR_INDEX_UNIT2 0x00000002 |
Definition at line 1189 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TS_PTR_INDEX
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TS_PTR_INDEX 0x00000100 |
Definition at line 1183 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TS_PTR_INDEX_UNIT0
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TS_PTR_INDEX_UNIT0 0x00000000 |
Definition at line 1184 of file ksz9563_driver.h.
◆ KSZ9563_GLOBAL_PTP_UNIT_INDEX_TS_PTR_INDEX_UNIT1
#define KSZ9563_GLOBAL_PTP_UNIT_INDEX_TS_PTR_INDEX_UNIT1 0x00000100 |
Definition at line 1185 of file ksz9563_driver.h.
◆ KSZ9563_GPIO_STATUS_MONITOR0
#define KSZ9563_GPIO_STATUS_MONITOR0 0x0524 |
Definition at line 220 of file ksz9563_driver.h.
◆ KSZ9563_GPIO_STATUS_MONITOR0_TRIGGER_DONE
#define KSZ9563_GPIO_STATUS_MONITOR0_TRIGGER_DONE 0x00000007 |
Definition at line 1193 of file ksz9563_driver.h.
◆ KSZ9563_GPIO_STATUS_MONITOR0_TRIGGER_ERROR
#define KSZ9563_GPIO_STATUS_MONITOR0_TRIGGER_ERROR 0x00070000 |
Definition at line 1192 of file ksz9563_driver.h.
◆ KSZ9563_GPIO_STATUS_MONITOR1
#define KSZ9563_GPIO_STATUS_MONITOR1 0x0528 |
Definition at line 221 of file ksz9563_driver.h.
◆ KSZ9563_GPIO_STATUS_MONITOR1_TRIGGER_INT_STATUS
#define KSZ9563_GPIO_STATUS_MONITOR1_TRIGGER_INT_STATUS 0x00070000 |
Definition at line 1196 of file ksz9563_driver.h.
◆ KSZ9563_GPIO_STATUS_MONITOR1_TS_INT_STATUS
#define KSZ9563_GPIO_STATUS_MONITOR1_TS_INT_STATUS 0x00000003 |
Definition at line 1197 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL
#define KSZ9563_IBA_CTRL 0x0104 |
Definition at line 109 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_DEST_MAC_ADDR_MATCH_EN
#define KSZ9563_IBA_CTRL_DEST_MAC_ADDR_MATCH_EN 0x40000000 |
Definition at line 811 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_IBA_COMM
#define KSZ9563_IBA_CTRL_IBA_COMM 0x00070000 |
Definition at line 815 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_IBA_COMM_PORT1
#define KSZ9563_IBA_CTRL_IBA_COMM_PORT1 0x00000000 |
Definition at line 816 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_IBA_COMM_PORT2
#define KSZ9563_IBA_CTRL_IBA_COMM_PORT2 0x00010000 |
Definition at line 817 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_IBA_COMM_PORT3
#define KSZ9563_IBA_CTRL_IBA_COMM_PORT3 0x00020000 |
Definition at line 818 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_IBA_EN
#define KSZ9563_IBA_CTRL_IBA_EN 0x80000000 |
Definition at line 810 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_IBA_RESET
#define KSZ9563_IBA_CTRL_IBA_RESET 0x20000000 |
Definition at line 812 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_RESP_PRIO_QUEUE
#define KSZ9563_IBA_CTRL_RESP_PRIO_QUEUE 0x00C00000 |
Definition at line 813 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_RESP_PRIO_QUEUE_DEFAULT
#define KSZ9563_IBA_CTRL_RESP_PRIO_QUEUE_DEFAULT 0x00400000 |
Definition at line 814 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_TPID
#define KSZ9563_IBA_CTRL_TPID 0x0000FFFF |
Definition at line 819 of file ksz9563_driver.h.
◆ KSZ9563_IBA_CTRL_TPID_DEFAULT
#define KSZ9563_IBA_CTRL_TPID_DEFAULT 0x000040FE |
Definition at line 820 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1
#define KSZ9563_IBA_OP_STAT1 0x0110 |
Definition at line 111 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_ACCESS_CMD_ERR
#define KSZ9563_IBA_OP_STAT1_ACCESS_CMD_ERR 0x00000800 |
Definition at line 833 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_ACCESS_CODE_ERR
#define KSZ9563_IBA_OP_STAT1_ACCESS_CODE_ERR 0x00001000 |
Definition at line 832 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_ACCESS_CODE_ERR_LOC
#define KSZ9563_IBA_OP_STAT1_ACCESS_CODE_ERR_LOC 0x0000007F |
Definition at line 835 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_ACCESS_FORMAT_ERR
#define KSZ9563_IBA_OP_STAT1_ACCESS_FORMAT_ERR 0x00002000 |
Definition at line 831 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_EXEC_DONE
#define KSZ9563_IBA_OP_STAT1_EXEC_DONE 0x20000000 |
Definition at line 829 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_GOOD_PKT_DETECT
#define KSZ9563_IBA_OP_STAT1_GOOD_PKT_DETECT 0x80000000 |
Definition at line 827 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_MAC_ADDR_MISMATCH_ERR
#define KSZ9563_IBA_OP_STAT1_MAC_ADDR_MISMATCH_ERR 0x00004000 |
Definition at line 830 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_OVERSIZE_PKT_ERR
#define KSZ9563_IBA_OP_STAT1_OVERSIZE_PKT_ERR 0x00000400 |
Definition at line 834 of file ksz9563_driver.h.
◆ KSZ9563_IBA_OP_STAT1_RESP_PKT_TX_DONE
#define KSZ9563_IBA_OP_STAT1_RESP_PKT_TX_DONE 0x40000000 |
Definition at line 828 of file ksz9563_driver.h.
◆ KSZ9563_ICSR
#define KSZ9563_ICSR 0x1B |
Definition at line 88 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_JABBER_IE
#define KSZ9563_ICSR_JABBER_IE 0x8000 |
Definition at line 724 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_JABBER_IF
#define KSZ9563_ICSR_JABBER_IF 0x0080 |
Definition at line 732 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_LINK_DOWN_IE
#define KSZ9563_ICSR_LINK_DOWN_IE 0x0400 |
Definition at line 729 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_LINK_DOWN_IF
#define KSZ9563_ICSR_LINK_DOWN_IF 0x0004 |
Definition at line 737 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_LINK_UP_IE
#define KSZ9563_ICSR_LINK_UP_IE 0x0100 |
Definition at line 731 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_LINK_UP_IF
#define KSZ9563_ICSR_LINK_UP_IF 0x0001 |
Definition at line 739 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_LP_ACK_IE
#define KSZ9563_ICSR_LP_ACK_IE 0x0800 |
Definition at line 728 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_LP_ACK_IF
#define KSZ9563_ICSR_LP_ACK_IF 0x0008 |
Definition at line 736 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_PAGE_RECEIVED_IE
#define KSZ9563_ICSR_PAGE_RECEIVED_IE 0x2000 |
Definition at line 726 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_PAGE_RECEIVED_IF
#define KSZ9563_ICSR_PAGE_RECEIVED_IF 0x0020 |
Definition at line 734 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_PAR_DETECT_FAULT_IE
#define KSZ9563_ICSR_PAR_DETECT_FAULT_IE 0x1000 |
Definition at line 727 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_PAR_DETECT_FAULT_IF
#define KSZ9563_ICSR_PAR_DETECT_FAULT_IF 0x0010 |
Definition at line 735 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_RECEIVE_ERROR_IE
#define KSZ9563_ICSR_RECEIVE_ERROR_IE 0x4000 |
Definition at line 725 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_RECEIVE_ERROR_IF
#define KSZ9563_ICSR_RECEIVE_ERROR_IF 0x0040 |
Definition at line 733 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_REMOTE_FAULT_IE
#define KSZ9563_ICSR_REMOTE_FAULT_IE 0x0200 |
Definition at line 730 of file ksz9563_driver.h.
◆ KSZ9563_ICSR_REMOTE_FAULT_IF
#define KSZ9563_ICSR_REMOTE_FAULT_IF 0x0002 |
Definition at line 738 of file ksz9563_driver.h.
◆ KSZ9563_IO_DRIVE_STRENGTH
#define KSZ9563_IO_DRIVE_STRENGTH 0x010D |
Definition at line 110 of file ksz9563_driver.h.
◆ KSZ9563_IO_DRIVE_STRENGTH_HIGH_SPEED_DRIVE_STRENGTH
#define KSZ9563_IO_DRIVE_STRENGTH_HIGH_SPEED_DRIVE_STRENGTH 0x70 |
Definition at line 823 of file ksz9563_driver.h.
◆ KSZ9563_IO_DRIVE_STRENGTH_LOW_SPEED_DRIVE_STRENGTH
#define KSZ9563_IO_DRIVE_STRENGTH_LOW_SPEED_DRIVE_STRENGTH 0x07 |
Definition at line 824 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_EN
#define KSZ9563_IP_DIFFSERV_PRIO_EN 0x033E |
Definition at line 150 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING0
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING0 0x0340 |
Definition at line 151 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING1
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING1 0x0341 |
Definition at line 152 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING10
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING10 0x034A |
Definition at line 161 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING11
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING11 0x034B |
Definition at line 162 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING12
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING12 0x034C |
Definition at line 163 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING13
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING13 0x034D |
Definition at line 164 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING14
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING14 0x034E |
Definition at line 165 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING15
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING15 0x034F |
Definition at line 166 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING16
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING16 0x0350 |
Definition at line 167 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING17
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING17 0x0351 |
Definition at line 168 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING18
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING18 0x0352 |
Definition at line 169 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING19
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING19 0x0353 |
Definition at line 170 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING2
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING2 0x0342 |
Definition at line 153 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING20
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING20 0x0354 |
Definition at line 171 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING21
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING21 0x0355 |
Definition at line 172 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING22
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING22 0x0356 |
Definition at line 173 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING23
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING23 0x0357 |
Definition at line 174 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING24
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING24 0x0358 |
Definition at line 175 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING25
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING25 0x0359 |
Definition at line 176 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING26
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING26 0x035A |
Definition at line 177 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING27
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING27 0x035B |
Definition at line 178 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING28
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING28 0x035C |
Definition at line 179 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING29
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING29 0x035D |
Definition at line 180 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING3
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING3 0x0343 |
Definition at line 154 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING30
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING30 0x035E |
Definition at line 181 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING31
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING31 0x035F |
Definition at line 182 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING4
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING4 0x0344 |
Definition at line 155 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING5
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING5 0x0345 |
Definition at line 156 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING6
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING6 0x0346 |
Definition at line 157 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING7
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING7 0x0347 |
Definition at line 158 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING8
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING8 0x0348 |
Definition at line 159 of file ksz9563_driver.h.
◆ KSZ9563_IP_DIFFSERV_PRIO_MAPPING9
#define KSZ9563_IP_DIFFSERV_PRIO_MAPPING9 0x0349 |
Definition at line 160 of file ksz9563_driver.h.
◆ KSZ9563_LED2_0_LED2_1_SRC
#define KSZ9563_LED2_0_LED2_1_SRC 0x0128 |
Definition at line 114 of file ksz9563_driver.h.
◆ KSZ9563_LED2_0_LED2_1_SRC_LED2_0_SRC
#define KSZ9563_LED2_0_LED2_1_SRC_LED2_0_SRC 0x00000004 |
Definition at line 853 of file ksz9563_driver.h.
◆ KSZ9563_LED2_0_LED2_1_SRC_LED2_1_SRC
#define KSZ9563_LED2_0_LED2_1_SRC_LED2_1_SRC 0x00000008 |
Definition at line 852 of file ksz9563_driver.h.
◆ KSZ9563_LED_OUTPUT
#define KSZ9563_LED_OUTPUT 0x0124 |
Definition at line 113 of file ksz9563_driver.h.
◆ KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL
#define KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL 0x0000000F |
Definition at line 845 of file ksz9563_driver.h.
◆ KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED1_0
#define KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED1_0 0x00000001 |
Definition at line 846 of file ksz9563_driver.h.
◆ KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED1_1
#define KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED1_1 0x00000002 |
Definition at line 847 of file ksz9563_driver.h.
◆ KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED2_0
#define KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED2_0 0x00000004 |
Definition at line 848 of file ksz9563_driver.h.
◆ KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED2_1
#define KSZ9563_LED_OUTPUT_GPIO_OUT_CTRL_LED2_1 0x00000008 |
Definition at line 849 of file ksz9563_driver.h.
◆ KSZ9563_LED_OVERRIDE
#define KSZ9563_LED_OVERRIDE 0x0120 |
Definition at line 112 of file ksz9563_driver.h.
◆ KSZ9563_LED_OVERRIDE_OVERRIDE
#define KSZ9563_LED_OVERRIDE_OVERRIDE 0x0000000F |
Definition at line 838 of file ksz9563_driver.h.
◆ KSZ9563_LED_OVERRIDE_OVERRIDE_LED1_0
#define KSZ9563_LED_OVERRIDE_OVERRIDE_LED1_0 0x00000001 |
Definition at line 839 of file ksz9563_driver.h.
◆ KSZ9563_LED_OVERRIDE_OVERRIDE_LED1_1
#define KSZ9563_LED_OVERRIDE_OVERRIDE_LED1_1 0x00000002 |
Definition at line 840 of file ksz9563_driver.h.
◆ KSZ9563_LED_OVERRIDE_OVERRIDE_LED2_0
#define KSZ9563_LED_OVERRIDE_OVERRIDE_LED2_0 0x00000004 |
Definition at line 841 of file ksz9563_driver.h.
◆ KSZ9563_LED_OVERRIDE_OVERRIDE_LED2_1
#define KSZ9563_LED_OVERRIDE_OVERRIDE_LED2_1 0x00000008 |
Definition at line 842 of file ksz9563_driver.h.
◆ KSZ9563_LED_STRAP_IN
#define KSZ9563_LED_STRAP_IN 0x0210 |
Definition at line 116 of file ksz9563_driver.h.
◆ KSZ9563_LED_STRAP_IN_STRAP_IN
#define KSZ9563_LED_STRAP_IN_STRAP_IN 0x0000000F |
Definition at line 863 of file ksz9563_driver.h.
◆ KSZ9563_LED_STRAP_IN_STRAP_IN_LED1_0
#define KSZ9563_LED_STRAP_IN_STRAP_IN_LED1_0 0x00000001 |
Definition at line 864 of file ksz9563_driver.h.
◆ KSZ9563_LED_STRAP_IN_STRAP_IN_LED1_1
#define KSZ9563_LED_STRAP_IN_STRAP_IN_LED1_1 0x00000002 |
Definition at line 865 of file ksz9563_driver.h.
◆ KSZ9563_LED_STRAP_IN_STRAP_IN_RXD2_0
#define KSZ9563_LED_STRAP_IN_STRAP_IN_RXD2_0 0x00000004 |
Definition at line 866 of file ksz9563_driver.h.
◆ KSZ9563_LED_STRAP_IN_STRAP_IN_RXD2_1
#define KSZ9563_LED_STRAP_IN_STRAP_IN_RXD2_1 0x00000008 |
Definition at line 867 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD
#define KSZ9563_LINKMD 0x12 |
Definition at line 85 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_PAIR
#define KSZ9563_LINKMD_PAIR 0x3000 |
Definition at line 709 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_PAIR_A
#define KSZ9563_LINKMD_PAIR_A 0x0000 |
Definition at line 710 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_PAIR_B
#define KSZ9563_LINKMD_PAIR_B 0x1000 |
Definition at line 711 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_PAIR_C
#define KSZ9563_LINKMD_PAIR_C 0x2000 |
Definition at line 712 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_PAIR_D
#define KSZ9563_LINKMD_PAIR_D 0x3000 |
Definition at line 713 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_STATUS
#define KSZ9563_LINKMD_STATUS 0x0300 |
Definition at line 714 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_STATUS_NORMAL
#define KSZ9563_LINKMD_STATUS_NORMAL 0x0000 |
Definition at line 715 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_STATUS_OPEN
#define KSZ9563_LINKMD_STATUS_OPEN 0x0100 |
Definition at line 716 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_STATUS_SHORT
#define KSZ9563_LINKMD_STATUS_SHORT 0x0200 |
Definition at line 717 of file ksz9563_driver.h.
◆ KSZ9563_LINKMD_TEST_EN
#define KSZ9563_LINKMD_TEST_EN 0x8000 |
Definition at line 708 of file ksz9563_driver.h.
◆ KSZ9563_MMD_1000BT_EEE_WAKE_TX_TIMER
#define KSZ9563_MMD_1000BT_EEE_WAKE_TX_TIMER 0x03, 0x0E |
Definition at line 94 of file ksz9563_driver.h.
◆ KSZ9563_MMD_EEE_ADV
#define KSZ9563_MMD_EEE_ADV 0x07, 0x3C |
Definition at line 95 of file ksz9563_driver.h.
◆ KSZ9563_MMD_EEE_ADV_1000BT_EEE_EN
#define KSZ9563_MMD_EEE_ADV_1000BT_EEE_EN 0x0004 |
Definition at line 761 of file ksz9563_driver.h.
◆ KSZ9563_MMD_EEE_ADV_100BT_EEE_EN
#define KSZ9563_MMD_EEE_ADV_100BT_EEE_EN 0x0002 |
Definition at line 762 of file ksz9563_driver.h.
◆ KSZ9563_MMD_LED_MODE
#define KSZ9563_MMD_LED_MODE 0x02, 0x00 |
Definition at line 93 of file ksz9563_driver.h.
◆ KSZ9563_MMD_LED_MODE_LED_MODE
#define KSZ9563_MMD_LED_MODE_LED_MODE 0x0010 |
Definition at line 754 of file ksz9563_driver.h.
◆ KSZ9563_MMD_LED_MODE_LED_MODE_SINGLE
#define KSZ9563_MMD_LED_MODE_LED_MODE_SINGLE 0x0010 |
Definition at line 756 of file ksz9563_driver.h.
◆ KSZ9563_MMD_LED_MODE_LED_MODE_TRI_COLOR_DUAL
#define KSZ9563_MMD_LED_MODE_LED_MODE_TRI_COLOR_DUAL 0x0000 |
Definition at line 755 of file ksz9563_driver.h.
◆ KSZ9563_MMD_LED_MODE_RESERVED
#define KSZ9563_MMD_LED_MODE_RESERVED 0x000F |
Definition at line 757 of file ksz9563_driver.h.
◆ KSZ9563_MMD_LED_MODE_RESERVED_DEFAULT
#define KSZ9563_MMD_LED_MODE_RESERVED_DEFAULT 0x0001 |
Definition at line 758 of file ksz9563_driver.h.
◆ KSZ9563_MMDAADR
#define KSZ9563_MMDAADR 0x0E |
Definition at line 82 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR
#define KSZ9563_MMDACR 0x0D |
Definition at line 81 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR_DEVAD
#define KSZ9563_MMDACR_DEVAD 0x001F |
Definition at line 696 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR_FUNC
#define KSZ9563_MMDACR_FUNC 0xC000 |
Definition at line 691 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR_FUNC_ADDR
#define KSZ9563_MMDACR_FUNC_ADDR 0x0000 |
Definition at line 692 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR_FUNC_DATA_NO_POST_INC
#define KSZ9563_MMDACR_FUNC_DATA_NO_POST_INC 0x4000 |
Definition at line 693 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR_FUNC_DATA_POST_INC_RW
#define KSZ9563_MMDACR_FUNC_DATA_POST_INC_RW 0x8000 |
Definition at line 694 of file ksz9563_driver.h.
◆ KSZ9563_MMDACR_FUNC_DATA_POST_INC_W
#define KSZ9563_MMDACR_FUNC_DATA_POST_INC_W 0xC000 |
Definition at line 695 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON
#define KSZ9563_PHYCON 0x1F |
Definition at line 90 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON_1000BT_MS_STATUS
#define KSZ9563_PHYCON_1000BT_MS_STATUS 0x0004 |
Definition at line 751 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON_DUPLEX_STATUS
#define KSZ9563_PHYCON_DUPLEX_STATUS 0x0008 |
Definition at line 750 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON_JABBER_EN
#define KSZ9563_PHYCON_JABBER_EN 0x0200 |
Definition at line 746 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON_SPEED_1000BT
#define KSZ9563_PHYCON_SPEED_1000BT 0x0040 |
Definition at line 747 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON_SPEED_100BTX
#define KSZ9563_PHYCON_SPEED_100BTX 0x0020 |
Definition at line 748 of file ksz9563_driver.h.
◆ KSZ9563_PHYCON_SPEED_10BT
#define KSZ9563_PHYCON_SPEED_10BT 0x0010 |
Definition at line 749 of file ksz9563_driver.h.
◆ KSZ9563_PHYID1
#define KSZ9563_PHYID1 0x02 |
Definition at line 72 of file ksz9563_driver.h.
◆ KSZ9563_PHYID1_DEFAULT
#define KSZ9563_PHYID1_DEFAULT 0x0022 |
Definition at line 621 of file ksz9563_driver.h.
◆ KSZ9563_PHYID2
#define KSZ9563_PHYID2 0x03 |
Definition at line 73 of file ksz9563_driver.h.
◆ KSZ9563_PHYID2_DEFAULT
#define KSZ9563_PHYID2_DEFAULT 0x1631 |
Definition at line 624 of file ksz9563_driver.h.
◆ KSZ9563_PME_PIN_CTRL
#define KSZ9563_PME_PIN_CTRL 0x0006 |
Definition at line 102 of file ksz9563_driver.h.
◆ KSZ9563_PME_PIN_CTRL_PME_PIN_OUT_EN
#define KSZ9563_PME_PIN_CTRL_PME_PIN_OUT_EN 0x02 |
Definition at line 778 of file ksz9563_driver.h.
◆ KSZ9563_PME_PIN_CTRL_PME_PIN_OUT_POL
#define KSZ9563_PME_PIN_CTRL_PME_PIN_OUT_POL 0x01 |
Definition at line 779 of file ksz9563_driver.h.
◆ KSZ9563_PORT1
#define KSZ9563_PORT1 1 |
Definition at line 38 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS0
#define KSZ9563_PORT1_ACL_ACCESS0 0x1600 |
Definition at line 287 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS1
#define KSZ9563_PORT1_ACL_ACCESS1 0x1601 |
Definition at line 288 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS10
#define KSZ9563_PORT1_ACL_ACCESS10 0x160A |
Definition at line 297 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS11
#define KSZ9563_PORT1_ACL_ACCESS11 0x160B |
Definition at line 298 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS12
#define KSZ9563_PORT1_ACL_ACCESS12 0x160C |
Definition at line 299 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS13
#define KSZ9563_PORT1_ACL_ACCESS13 0x160D |
Definition at line 300 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS14
#define KSZ9563_PORT1_ACL_ACCESS14 0x160E |
Definition at line 301 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS15
#define KSZ9563_PORT1_ACL_ACCESS15 0x160F |
Definition at line 302 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS2
#define KSZ9563_PORT1_ACL_ACCESS2 0x1602 |
Definition at line 289 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS3
#define KSZ9563_PORT1_ACL_ACCESS3 0x1603 |
Definition at line 290 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS4
#define KSZ9563_PORT1_ACL_ACCESS4 0x1604 |
Definition at line 291 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS5
#define KSZ9563_PORT1_ACL_ACCESS5 0x1605 |
Definition at line 292 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS6
#define KSZ9563_PORT1_ACL_ACCESS6 0x1606 |
Definition at line 293 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS7
#define KSZ9563_PORT1_ACL_ACCESS7 0x1607 |
Definition at line 294 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS8
#define KSZ9563_PORT1_ACL_ACCESS8 0x1608 |
Definition at line 295 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS9
#define KSZ9563_PORT1_ACL_ACCESS9 0x1609 |
Definition at line 296 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_ACCESS_CTRL0
#define KSZ9563_PORT1_ACL_ACCESS_CTRL0 0x1612 |
Definition at line 305 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_BYTE_EN_LSB
#define KSZ9563_PORT1_ACL_BYTE_EN_LSB 0x1611 |
Definition at line 304 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_ACL_BYTE_EN_MSB
#define KSZ9563_PORT1_ACL_BYTE_EN_MSB 0x1610 |
Definition at line 303 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AUTH_CTRL
#define KSZ9563_PORT1_AUTH_CTRL 0x1803 |
Definition at line 309 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AVB_SR_CLASS1_TAG0
#define KSZ9563_PORT1_AVB_SR_CLASS1_TAG0 0x1004 |
Definition at line 257 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AVB_SR_CLASS1_TAG1
#define KSZ9563_PORT1_AVB_SR_CLASS1_TAG1 0x1005 |
Definition at line 258 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AVB_SR_CLASS1_TYPE
#define KSZ9563_PORT1_AVB_SR_CLASS1_TYPE 0x1008 |
Definition at line 261 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AVB_SR_CLASS2_TAG0
#define KSZ9563_PORT1_AVB_SR_CLASS2_TAG0 0x1006 |
Definition at line 259 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AVB_SR_CLASS2_TAG1
#define KSZ9563_PORT1_AVB_SR_CLASS2_TAG1 0x1007 |
Definition at line 260 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_AVB_SR_CLASS2_TYPE
#define KSZ9563_PORT1_AVB_SR_CLASS2_TYPE 0x100A |
Definition at line 262 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_CTRL0
#define KSZ9563_PORT1_CTRL0 0x1A00 |
Definition at line 320 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_CTRL1
#define KSZ9563_PORT1_CTRL1 0x1A04 |
Definition at line 321 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_CTRL2
#define KSZ9563_PORT1_CTRL2 0x1B00 |
Definition at line 322 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_DEFAULT_TAG0
#define KSZ9563_PORT1_DEFAULT_TAG0 0x1000 |
Definition at line 255 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_DEFAULT_TAG1
#define KSZ9563_PORT1_DEFAULT_TAG1 0x1001 |
Definition at line 256 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_IG_MAC_CTRL
#define KSZ9563_PORT1_IG_MAC_CTRL 0x1802 |
Definition at line 308 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_IG_RATE_LIMIT_CTRL
#define KSZ9563_PORT1_IG_RATE_LIMIT_CTRL 0x1403 |
Definition at line 272 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_INT_MASK
#define KSZ9563_PORT1_INT_MASK 0x101F |
Definition at line 266 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_INT_STATUS
#define KSZ9563_PORT1_INT_STATUS 0x101B |
Definition at line 265 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MAC_CTRL0
#define KSZ9563_PORT1_MAC_CTRL0 0x1400 |
Definition at line 270 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MAC_CTRL1
#define KSZ9563_PORT1_MAC_CTRL1 0x1401 |
Definition at line 271 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MASK
#define KSZ9563_PORT1_MASK 0x01 |
Definition at line 44 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MIB_CTRL_STAT
#define KSZ9563_PORT1_MIB_CTRL_STAT 0x1500 |
Definition at line 285 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MIB_DATA
#define KSZ9563_PORT1_MIB_DATA 0x1504 |
Definition at line 286 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MIRRORING_CTRL
#define KSZ9563_PORT1_MIRRORING_CTRL 0x1800 |
Definition at line 306 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MSTP_PTR
#define KSZ9563_PORT1_MSTP_PTR 0x1B01 |
Definition at line 323 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_MSTP_STATE
#define KSZ9563_PORT1_MSTP_STATE 0x1B04 |
Definition at line 324 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_OP_CTRL0
#define KSZ9563_PORT1_OP_CTRL0 0x1020 |
Definition at line 267 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_OP_CTRL1
#define KSZ9563_PORT1_OP_CTRL1 0x1021 |
Definition at line 268 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PME_WOL_EN
#define KSZ9563_PORT1_PME_WOL_EN 0x1017 |
Definition at line 264 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PME_WOL_EVENT
#define KSZ9563_PORT1_PME_WOL_EVENT 0x1013 |
Definition at line 263 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_POLICE_CTRL
#define KSZ9563_PORT1_POLICE_CTRL 0x180C |
Definition at line 312 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO0_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO0_IG_LIMIT_CTRL 0x1410 |
Definition at line 273 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO1_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO1_IG_LIMIT_CTRL 0x1411 |
Definition at line 274 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO2_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO2_IG_LIMIT_CTRL 0x1412 |
Definition at line 275 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO3_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO3_IG_LIMIT_CTRL 0x1413 |
Definition at line 276 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO4_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO4_IG_LIMIT_CTRL 0x1414 |
Definition at line 277 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO5_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO5_IG_LIMIT_CTRL 0x1415 |
Definition at line 278 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO6_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO6_IG_LIMIT_CTRL 0x1416 |
Definition at line 279 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO7_IG_LIMIT_CTRL
#define KSZ9563_PORT1_PRIO7_IG_LIMIT_CTRL 0x1417 |
Definition at line 280 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO_CTRL
#define KSZ9563_PORT1_PRIO_CTRL 0x1801 |
Definition at line 307 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PRIO_TO_QUEUE_MAPPING
#define KSZ9563_PORT1_PRIO_TO_QUEUE_MAPPING 0x1808 |
Definition at line 311 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_ASYM_CORRECTION
#define KSZ9563_PORT1_PTP_ASYM_CORRECTION 0x1C04 |
Definition at line 327 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_LINK_DELAY
#define KSZ9563_PORT1_PTP_LINK_DELAY 0x1C18 |
Definition at line 336 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_PDLY_RESP_TSH
#define KSZ9563_PORT1_PTP_PDLY_RESP_TSH 0x1C10 |
Definition at line 332 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_PDLY_RESP_TSL
#define KSZ9563_PORT1_PTP_PDLY_RESP_TSL 0x1C12 |
Definition at line 333 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_RX_LATENCY
#define KSZ9563_PORT1_PTP_RX_LATENCY 0x1C00 |
Definition at line 325 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_SYNC_TSH
#define KSZ9563_PORT1_PTP_SYNC_TSH 0x1C0C |
Definition at line 330 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_SYNC_TSL
#define KSZ9563_PORT1_PTP_SYNC_TSL 0x1C0E |
Definition at line 331 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_TS_INT_EN
#define KSZ9563_PORT1_PTP_TS_INT_EN 0x1C16 |
Definition at line 335 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_TS_INT_STAT
#define KSZ9563_PORT1_PTP_TS_INT_STAT 0x1C14 |
Definition at line 334 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_TX_LATENCY
#define KSZ9563_PORT1_PTP_TX_LATENCY 0x1C02 |
Definition at line 326 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_XDLY_REQ_TSH
#define KSZ9563_PORT1_PTP_XDLY_REQ_TSH 0x1C08 |
Definition at line 328 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTP_XDLY_REQ_TSL
#define KSZ9563_PORT1_PTP_XDLY_REQ_TSL 0x1C0A |
Definition at line 329 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_PTR
#define KSZ9563_PORT1_PTR 0x1804 |
Definition at line 310 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_QUEUE0_EG_LIMIT_CTRL
#define KSZ9563_PORT1_QUEUE0_EG_LIMIT_CTRL 0x1420 |
Definition at line 281 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_QUEUE1_EG_LIMIT_CTRL
#define KSZ9563_PORT1_QUEUE1_EG_LIMIT_CTRL 0x1421 |
Definition at line 282 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_QUEUE2_EG_LIMIT_CTRL
#define KSZ9563_PORT1_QUEUE2_EG_LIMIT_CTRL 0x1422 |
Definition at line 283 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_QUEUE3_EG_LIMIT_CTRL
#define KSZ9563_PORT1_QUEUE3_EG_LIMIT_CTRL 0x1423 |
Definition at line 284 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_STATUS
#define KSZ9563_PORT1_STATUS 0x1030 |
Definition at line 269 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_CREDIT_SHAPER_CTRL0
#define KSZ9563_PORT1_TX_CREDIT_SHAPER_CTRL0 0x1916 |
Definition at line 317 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_CREDIT_SHAPER_CTRL1
#define KSZ9563_PORT1_TX_CREDIT_SHAPER_CTRL1 0x1918 |
Definition at line 318 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_CREDIT_SHAPER_CTRL2
#define KSZ9563_PORT1_TX_CREDIT_SHAPER_CTRL2 0x191A |
Definition at line 319 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_QUEUE_CTRL0
#define KSZ9563_PORT1_TX_QUEUE_CTRL0 0x1914 |
Definition at line 315 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_QUEUE_CTRL1
#define KSZ9563_PORT1_TX_QUEUE_CTRL1 0x1915 |
Definition at line 316 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_QUEUE_INDEX
#define KSZ9563_PORT1_TX_QUEUE_INDEX 0x1900 |
Definition at line 313 of file ksz9563_driver.h.
◆ KSZ9563_PORT1_TX_QUEUE_PVID
#define KSZ9563_PORT1_TX_QUEUE_PVID 0x1904 |
Definition at line 314 of file ksz9563_driver.h.
◆ KSZ9563_PORT2
#define KSZ9563_PORT2 2 |
Definition at line 39 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS0
#define KSZ9563_PORT2_ACL_ACCESS0 0x2600 |
Definition at line 369 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS1
#define KSZ9563_PORT2_ACL_ACCESS1 0x2601 |
Definition at line 370 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS10
#define KSZ9563_PORT2_ACL_ACCESS10 0x260A |
Definition at line 379 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS11
#define KSZ9563_PORT2_ACL_ACCESS11 0x260B |
Definition at line 380 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS12
#define KSZ9563_PORT2_ACL_ACCESS12 0x260C |
Definition at line 381 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS13
#define KSZ9563_PORT2_ACL_ACCESS13 0x260D |
Definition at line 382 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS14
#define KSZ9563_PORT2_ACL_ACCESS14 0x260E |
Definition at line 383 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS15
#define KSZ9563_PORT2_ACL_ACCESS15 0x260F |
Definition at line 384 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS2
#define KSZ9563_PORT2_ACL_ACCESS2 0x2602 |
Definition at line 371 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS3
#define KSZ9563_PORT2_ACL_ACCESS3 0x2603 |
Definition at line 372 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS4
#define KSZ9563_PORT2_ACL_ACCESS4 0x2604 |
Definition at line 373 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS5
#define KSZ9563_PORT2_ACL_ACCESS5 0x2605 |
Definition at line 374 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS6
#define KSZ9563_PORT2_ACL_ACCESS6 0x2606 |
Definition at line 375 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS7
#define KSZ9563_PORT2_ACL_ACCESS7 0x2607 |
Definition at line 376 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS8
#define KSZ9563_PORT2_ACL_ACCESS8 0x2608 |
Definition at line 377 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS9
#define KSZ9563_PORT2_ACL_ACCESS9 0x2609 |
Definition at line 378 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_ACCESS_CTRL0
#define KSZ9563_PORT2_ACL_ACCESS_CTRL0 0x2612 |
Definition at line 387 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_BYTE_EN_LSB
#define KSZ9563_PORT2_ACL_BYTE_EN_LSB 0x2611 |
Definition at line 386 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_ACL_BYTE_EN_MSB
#define KSZ9563_PORT2_ACL_BYTE_EN_MSB 0x2610 |
Definition at line 385 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AUTH_CTRL
#define KSZ9563_PORT2_AUTH_CTRL 0x2803 |
Definition at line 391 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AVB_SR_CLASS1_TAG0
#define KSZ9563_PORT2_AVB_SR_CLASS1_TAG0 0x2004 |
Definition at line 339 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AVB_SR_CLASS1_TAG1
#define KSZ9563_PORT2_AVB_SR_CLASS1_TAG1 0x2005 |
Definition at line 340 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AVB_SR_CLASS1_TYPE
#define KSZ9563_PORT2_AVB_SR_CLASS1_TYPE 0x2008 |
Definition at line 343 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AVB_SR_CLASS2_TAG0
#define KSZ9563_PORT2_AVB_SR_CLASS2_TAG0 0x2006 |
Definition at line 341 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AVB_SR_CLASS2_TAG1
#define KSZ9563_PORT2_AVB_SR_CLASS2_TAG1 0x2007 |
Definition at line 342 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_AVB_SR_CLASS2_TYPE
#define KSZ9563_PORT2_AVB_SR_CLASS2_TYPE 0x200A |
Definition at line 344 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_CTRL0
#define KSZ9563_PORT2_CTRL0 0x2A00 |
Definition at line 402 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_CTRL1
#define KSZ9563_PORT2_CTRL1 0x2A04 |
Definition at line 403 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_CTRL2
#define KSZ9563_PORT2_CTRL2 0x2B00 |
Definition at line 404 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_DEFAULT_TAG0
#define KSZ9563_PORT2_DEFAULT_TAG0 0x2000 |
Definition at line 337 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_DEFAULT_TAG1
#define KSZ9563_PORT2_DEFAULT_TAG1 0x2001 |
Definition at line 338 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_IG_MAC_CTRL
#define KSZ9563_PORT2_IG_MAC_CTRL 0x2802 |
Definition at line 390 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_IG_RATE_LIMIT_CTRL
#define KSZ9563_PORT2_IG_RATE_LIMIT_CTRL 0x2403 |
Definition at line 354 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_INT_MASK
#define KSZ9563_PORT2_INT_MASK 0x201F |
Definition at line 348 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_INT_STATUS
#define KSZ9563_PORT2_INT_STATUS 0x201B |
Definition at line 347 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MAC_CTRL0
#define KSZ9563_PORT2_MAC_CTRL0 0x2400 |
Definition at line 352 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MAC_CTRL1
#define KSZ9563_PORT2_MAC_CTRL1 0x2401 |
Definition at line 353 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MASK
#define KSZ9563_PORT2_MASK 0x02 |
Definition at line 45 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MIB_CTRL_STAT
#define KSZ9563_PORT2_MIB_CTRL_STAT 0x2500 |
Definition at line 367 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MIB_DATA
#define KSZ9563_PORT2_MIB_DATA 0x2504 |
Definition at line 368 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MIRRORING_CTRL
#define KSZ9563_PORT2_MIRRORING_CTRL 0x2800 |
Definition at line 388 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MSTP_PTR
#define KSZ9563_PORT2_MSTP_PTR 0x2B01 |
Definition at line 405 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_MSTP_STATE
#define KSZ9563_PORT2_MSTP_STATE 0x2B04 |
Definition at line 406 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_OP_CTRL0
#define KSZ9563_PORT2_OP_CTRL0 0x2020 |
Definition at line 349 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_OP_CTRL1
#define KSZ9563_PORT2_OP_CTRL1 0x2021 |
Definition at line 350 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PME_WOL_EN
#define KSZ9563_PORT2_PME_WOL_EN 0x2017 |
Definition at line 346 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PME_WOL_EVENT
#define KSZ9563_PORT2_PME_WOL_EVENT 0x2013 |
Definition at line 345 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_POLICE_CTRL
#define KSZ9563_PORT2_POLICE_CTRL 0x280C |
Definition at line 394 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO0_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO0_IG_LIMIT_CTRL 0x2410 |
Definition at line 355 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO1_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO1_IG_LIMIT_CTRL 0x2411 |
Definition at line 356 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO2_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO2_IG_LIMIT_CTRL 0x2412 |
Definition at line 357 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO3_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO3_IG_LIMIT_CTRL 0x2413 |
Definition at line 358 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO4_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO4_IG_LIMIT_CTRL 0x2414 |
Definition at line 359 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO5_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO5_IG_LIMIT_CTRL 0x2415 |
Definition at line 360 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO6_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO6_IG_LIMIT_CTRL 0x2416 |
Definition at line 361 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO7_IG_LIMIT_CTRL
#define KSZ9563_PORT2_PRIO7_IG_LIMIT_CTRL 0x2417 |
Definition at line 362 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO_CTRL
#define KSZ9563_PORT2_PRIO_CTRL 0x2801 |
Definition at line 389 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PRIO_TO_QUEUE_MAPPING
#define KSZ9563_PORT2_PRIO_TO_QUEUE_MAPPING 0x2808 |
Definition at line 393 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_ASYM_CORRECTION
#define KSZ9563_PORT2_PTP_ASYM_CORRECTION 0x2C04 |
Definition at line 409 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_LINK_DELAY
#define KSZ9563_PORT2_PTP_LINK_DELAY 0x2C18 |
Definition at line 418 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_PDLY_RESP_TSH
#define KSZ9563_PORT2_PTP_PDLY_RESP_TSH 0x2C10 |
Definition at line 414 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_PDLY_RESP_TSL
#define KSZ9563_PORT2_PTP_PDLY_RESP_TSL 0x2C12 |
Definition at line 415 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_RX_LATENCY
#define KSZ9563_PORT2_PTP_RX_LATENCY 0x2C00 |
Definition at line 407 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_SYNC_TSH
#define KSZ9563_PORT2_PTP_SYNC_TSH 0x2C0C |
Definition at line 412 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_SYNC_TSL
#define KSZ9563_PORT2_PTP_SYNC_TSL 0x2C0E |
Definition at line 413 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_TS_INT_EN
#define KSZ9563_PORT2_PTP_TS_INT_EN 0x2C16 |
Definition at line 417 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_TS_INT_STAT
#define KSZ9563_PORT2_PTP_TS_INT_STAT 0x2C14 |
Definition at line 416 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_TX_LATENCY
#define KSZ9563_PORT2_PTP_TX_LATENCY 0x2C02 |
Definition at line 408 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_XDLY_REQ_TSH
#define KSZ9563_PORT2_PTP_XDLY_REQ_TSH 0x2C08 |
Definition at line 410 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTP_XDLY_REQ_TSL
#define KSZ9563_PORT2_PTP_XDLY_REQ_TSL 0x2C0A |
Definition at line 411 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_PTR
#define KSZ9563_PORT2_PTR 0x2804 |
Definition at line 392 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_QUEUE0_EG_LIMIT_CTRL
#define KSZ9563_PORT2_QUEUE0_EG_LIMIT_CTRL 0x2420 |
Definition at line 363 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_QUEUE1_EG_LIMIT_CTRL
#define KSZ9563_PORT2_QUEUE1_EG_LIMIT_CTRL 0x2421 |
Definition at line 364 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_QUEUE2_EG_LIMIT_CTRL
#define KSZ9563_PORT2_QUEUE2_EG_LIMIT_CTRL 0x2422 |
Definition at line 365 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_QUEUE3_EG_LIMIT_CTRL
#define KSZ9563_PORT2_QUEUE3_EG_LIMIT_CTRL 0x2423 |
Definition at line 366 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_STATUS
#define KSZ9563_PORT2_STATUS 0x2030 |
Definition at line 351 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_CREDIT_SHAPER_CTRL0
#define KSZ9563_PORT2_TX_CREDIT_SHAPER_CTRL0 0x2916 |
Definition at line 399 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_CREDIT_SHAPER_CTRL1
#define KSZ9563_PORT2_TX_CREDIT_SHAPER_CTRL1 0x2918 |
Definition at line 400 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_CREDIT_SHAPER_CTRL2
#define KSZ9563_PORT2_TX_CREDIT_SHAPER_CTRL2 0x291A |
Definition at line 401 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_QUEUE_CTRL0
#define KSZ9563_PORT2_TX_QUEUE_CTRL0 0x2914 |
Definition at line 397 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_QUEUE_CTRL1
#define KSZ9563_PORT2_TX_QUEUE_CTRL1 0x2915 |
Definition at line 398 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_QUEUE_INDEX
#define KSZ9563_PORT2_TX_QUEUE_INDEX 0x2900 |
Definition at line 395 of file ksz9563_driver.h.
◆ KSZ9563_PORT2_TX_QUEUE_PVID
#define KSZ9563_PORT2_TX_QUEUE_PVID 0x2904 |
Definition at line 396 of file ksz9563_driver.h.
◆ KSZ9563_PORT3
#define KSZ9563_PORT3 3 |
Definition at line 40 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS0
#define KSZ9563_PORT3_ACL_ACCESS0 0x3600 |
Definition at line 454 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS1
#define KSZ9563_PORT3_ACL_ACCESS1 0x3601 |
Definition at line 455 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS10
#define KSZ9563_PORT3_ACL_ACCESS10 0x360A |
Definition at line 464 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS11
#define KSZ9563_PORT3_ACL_ACCESS11 0x360B |
Definition at line 465 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS12
#define KSZ9563_PORT3_ACL_ACCESS12 0x360C |
Definition at line 466 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS13
#define KSZ9563_PORT3_ACL_ACCESS13 0x360D |
Definition at line 467 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS14
#define KSZ9563_PORT3_ACL_ACCESS14 0x360E |
Definition at line 468 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS15
#define KSZ9563_PORT3_ACL_ACCESS15 0x360F |
Definition at line 469 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS2
#define KSZ9563_PORT3_ACL_ACCESS2 0x3602 |
Definition at line 456 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS3
#define KSZ9563_PORT3_ACL_ACCESS3 0x3603 |
Definition at line 457 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS4
#define KSZ9563_PORT3_ACL_ACCESS4 0x3604 |
Definition at line 458 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS5
#define KSZ9563_PORT3_ACL_ACCESS5 0x3605 |
Definition at line 459 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS6
#define KSZ9563_PORT3_ACL_ACCESS6 0x3606 |
Definition at line 460 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS7
#define KSZ9563_PORT3_ACL_ACCESS7 0x3607 |
Definition at line 461 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS8
#define KSZ9563_PORT3_ACL_ACCESS8 0x3608 |
Definition at line 462 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS9
#define KSZ9563_PORT3_ACL_ACCESS9 0x3609 |
Definition at line 463 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_ACCESS_CTRL0
#define KSZ9563_PORT3_ACL_ACCESS_CTRL0 0x3612 |
Definition at line 472 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_BYTE_EN_LSB
#define KSZ9563_PORT3_ACL_BYTE_EN_LSB 0x3611 |
Definition at line 471 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_ACL_BYTE_EN_MSB
#define KSZ9563_PORT3_ACL_BYTE_EN_MSB 0x3610 |
Definition at line 470 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AUTH_CTRL
#define KSZ9563_PORT3_AUTH_CTRL 0x3803 |
Definition at line 476 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AVB_SR_CLASS1_TAG0
#define KSZ9563_PORT3_AVB_SR_CLASS1_TAG0 0x3004 |
Definition at line 421 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AVB_SR_CLASS1_TAG1
#define KSZ9563_PORT3_AVB_SR_CLASS1_TAG1 0x3005 |
Definition at line 422 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AVB_SR_CLASS1_TYPE
#define KSZ9563_PORT3_AVB_SR_CLASS1_TYPE 0x3008 |
Definition at line 425 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AVB_SR_CLASS2_TAG0
#define KSZ9563_PORT3_AVB_SR_CLASS2_TAG0 0x3006 |
Definition at line 423 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AVB_SR_CLASS2_TAG1
#define KSZ9563_PORT3_AVB_SR_CLASS2_TAG1 0x3007 |
Definition at line 424 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_AVB_SR_CLASS2_TYPE
#define KSZ9563_PORT3_AVB_SR_CLASS2_TYPE 0x300A |
Definition at line 426 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_CTRL0
#define KSZ9563_PORT3_CTRL0 0x3A00 |
Definition at line 487 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_CTRL1
#define KSZ9563_PORT3_CTRL1 0x3A04 |
Definition at line 488 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_CTRL2
#define KSZ9563_PORT3_CTRL2 0x3B00 |
Definition at line 489 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_DEFAULT_TAG0
#define KSZ9563_PORT3_DEFAULT_TAG0 0x3000 |
Definition at line 419 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_DEFAULT_TAG1
#define KSZ9563_PORT3_DEFAULT_TAG1 0x3001 |
Definition at line 420 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_IG_MAC_CTRL
#define KSZ9563_PORT3_IG_MAC_CTRL 0x3802 |
Definition at line 475 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_IG_RATE_LIMIT_CTRL
#define KSZ9563_PORT3_IG_RATE_LIMIT_CTRL 0x3403 |
Definition at line 439 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_INT_MASK
#define KSZ9563_PORT3_INT_MASK 0x301F |
Definition at line 430 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_INT_STATUS
#define KSZ9563_PORT3_INT_STATUS 0x301B |
Definition at line 429 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MAC_CTRL0
#define KSZ9563_PORT3_MAC_CTRL0 0x3400 |
Definition at line 437 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MAC_CTRL1
#define KSZ9563_PORT3_MAC_CTRL1 0x3401 |
Definition at line 438 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MASK
#define KSZ9563_PORT3_MASK 0x04 |
Definition at line 46 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MIB_CTRL_STAT
#define KSZ9563_PORT3_MIB_CTRL_STAT 0x3500 |
Definition at line 452 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MIB_DATA
#define KSZ9563_PORT3_MIB_DATA 0x3504 |
Definition at line 453 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MIRRORING_CTRL
#define KSZ9563_PORT3_MIRRORING_CTRL 0x3800 |
Definition at line 473 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MSTP_PTR
#define KSZ9563_PORT3_MSTP_PTR 0x3B01 |
Definition at line 490 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_MSTP_STATE
#define KSZ9563_PORT3_MSTP_STATE 0x3B04 |
Definition at line 491 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_OP_CTRL0
#define KSZ9563_PORT3_OP_CTRL0 0x3020 |
Definition at line 431 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_OP_CTRL1
#define KSZ9563_PORT3_OP_CTRL1 0x3021 |
Definition at line 432 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PME_WOL_EN
#define KSZ9563_PORT3_PME_WOL_EN 0x3017 |
Definition at line 428 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PME_WOL_EVENT
#define KSZ9563_PORT3_PME_WOL_EVENT 0x3013 |
Definition at line 427 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_POLICE_CTRL
#define KSZ9563_PORT3_POLICE_CTRL 0x380C |
Definition at line 479 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO0_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO0_IG_LIMIT_CTRL 0x3410 |
Definition at line 440 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO1_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO1_IG_LIMIT_CTRL 0x3411 |
Definition at line 441 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO2_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO2_IG_LIMIT_CTRL 0x3412 |
Definition at line 442 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO3_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO3_IG_LIMIT_CTRL 0x3413 |
Definition at line 443 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO4_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO4_IG_LIMIT_CTRL 0x3414 |
Definition at line 444 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO5_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO5_IG_LIMIT_CTRL 0x3415 |
Definition at line 445 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO6_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO6_IG_LIMIT_CTRL 0x3416 |
Definition at line 446 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO7_IG_LIMIT_CTRL
#define KSZ9563_PORT3_PRIO7_IG_LIMIT_CTRL 0x3417 |
Definition at line 447 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO_CTRL
#define KSZ9563_PORT3_PRIO_CTRL 0x3801 |
Definition at line 474 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PRIO_TO_QUEUE_MAPPING
#define KSZ9563_PORT3_PRIO_TO_QUEUE_MAPPING 0x3808 |
Definition at line 478 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_ASYM_CORRECTION
#define KSZ9563_PORT3_PTP_ASYM_CORRECTION 0x3C04 |
Definition at line 494 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_LINK_DELAY
#define KSZ9563_PORT3_PTP_LINK_DELAY 0x3C18 |
Definition at line 503 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_PDLY_RESP_TSH
#define KSZ9563_PORT3_PTP_PDLY_RESP_TSH 0x3C10 |
Definition at line 499 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_PDLY_RESP_TSL
#define KSZ9563_PORT3_PTP_PDLY_RESP_TSL 0x3C12 |
Definition at line 500 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_RX_LATENCY
#define KSZ9563_PORT3_PTP_RX_LATENCY 0x3C00 |
Definition at line 492 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_SYNC_TSH
#define KSZ9563_PORT3_PTP_SYNC_TSH 0x3C0C |
Definition at line 497 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_SYNC_TSL
#define KSZ9563_PORT3_PTP_SYNC_TSL 0x3C0E |
Definition at line 498 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_TS_INT_EN
#define KSZ9563_PORT3_PTP_TS_INT_EN 0x3C16 |
Definition at line 502 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_TS_INT_STAT
#define KSZ9563_PORT3_PTP_TS_INT_STAT 0x3C14 |
Definition at line 501 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_TX_LATENCY
#define KSZ9563_PORT3_PTP_TX_LATENCY 0x3C02 |
Definition at line 493 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_XDLY_REQ_TSH
#define KSZ9563_PORT3_PTP_XDLY_REQ_TSH 0x3C08 |
Definition at line 495 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTP_XDLY_REQ_TSL
#define KSZ9563_PORT3_PTP_XDLY_REQ_TSL 0x3C0A |
Definition at line 496 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_PTR
#define KSZ9563_PORT3_PTR 0x3804 |
Definition at line 477 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_QUEUE0_EG_LIMIT_CTRL
#define KSZ9563_PORT3_QUEUE0_EG_LIMIT_CTRL 0x3420 |
Definition at line 448 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_QUEUE1_EG_LIMIT_CTRL
#define KSZ9563_PORT3_QUEUE1_EG_LIMIT_CTRL 0x3421 |
Definition at line 449 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_QUEUE2_EG_LIMIT_CTRL
#define KSZ9563_PORT3_QUEUE2_EG_LIMIT_CTRL 0x3422 |
Definition at line 450 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_QUEUE3_EG_LIMIT_CTRL
#define KSZ9563_PORT3_QUEUE3_EG_LIMIT_CTRL 0x3423 |
Definition at line 451 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_STATUS
#define KSZ9563_PORT3_STATUS 0x3030 |
Definition at line 433 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_CREDIT_SHAPER_CTRL0
#define KSZ9563_PORT3_TX_CREDIT_SHAPER_CTRL0 0x3916 |
Definition at line 484 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_CREDIT_SHAPER_CTRL1
#define KSZ9563_PORT3_TX_CREDIT_SHAPER_CTRL1 0x3918 |
Definition at line 485 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_CREDIT_SHAPER_CTRL2
#define KSZ9563_PORT3_TX_CREDIT_SHAPER_CTRL2 0x391A |
Definition at line 486 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_QUEUE_CTRL0
#define KSZ9563_PORT3_TX_QUEUE_CTRL0 0x3914 |
Definition at line 482 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_QUEUE_CTRL1
#define KSZ9563_PORT3_TX_QUEUE_CTRL1 0x3915 |
Definition at line 483 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_QUEUE_INDEX
#define KSZ9563_PORT3_TX_QUEUE_INDEX 0x3900 |
Definition at line 480 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_TX_QUEUE_PVID
#define KSZ9563_PORT3_TX_QUEUE_PVID 0x3904 |
Definition at line 481 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_XMII_CTRL0
#define KSZ9563_PORT3_XMII_CTRL0 0x3300 |
Definition at line 434 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_XMII_CTRL1
#define KSZ9563_PORT3_XMII_CTRL1 0x3301 |
Definition at line 435 of file ksz9563_driver.h.
◆ KSZ9563_PORT3_XMII_CTRL3
#define KSZ9563_PORT3_XMII_CTRL3 0x3303 |
Definition at line 436 of file ksz9563_driver.h.
◆ KSZ9563_PORT_MASK
#define KSZ9563_PORT_MASK 0x07 |
Definition at line 43 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS0
Definition at line 541 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS1
Definition at line 542 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS10
Definition at line 551 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS11
Definition at line 552 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS12
Definition at line 553 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS13
Definition at line 554 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS14
Definition at line 555 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS15
Definition at line 556 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS2
Definition at line 543 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS3
Definition at line 544 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS4
Definition at line 545 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS5
Definition at line 546 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS6
Definition at line 547 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS7
Definition at line 548 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS8
Definition at line 549 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS9
Definition at line 550 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS_CTRL0
Definition at line 559 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS_CTRL0_ACL_INDEX
#define KSZ9563_PORTn_ACL_ACCESS_CTRL0_ACL_INDEX 0x0F |
Definition at line 1415 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS_CTRL0_READ
#define KSZ9563_PORTn_ACL_ACCESS_CTRL0_READ 0x00 |
Definition at line 1413 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS_CTRL0_READ_STATUS
#define KSZ9563_PORTn_ACL_ACCESS_CTRL0_READ_STATUS 0x20 |
Definition at line 1412 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS_CTRL0_WRITE
#define KSZ9563_PORTn_ACL_ACCESS_CTRL0_WRITE 0x10 |
Definition at line 1414 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_ACCESS_CTRL0_WRITE_STATUS
#define KSZ9563_PORTn_ACL_ACCESS_CTRL0_WRITE_STATUS 0x40 |
Definition at line 1411 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_BYTE_EN_LSB
Definition at line 558 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ACL_BYTE_EN_MSB
Definition at line 557 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AUTH_CTRL
Definition at line 563 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AUTH_CTRL_ACL_EN
#define KSZ9563_PORTn_AUTH_CTRL_ACL_EN 0x04 |
Definition at line 1423 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE
#define KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE 0x03 |
Definition at line 1424 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE_BLOCK
#define KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE_BLOCK 0x01 |
Definition at line 1426 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE_PASS
#define KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE_PASS 0x00 |
Definition at line 1425 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE_TRAP
#define KSZ9563_PORTn_AUTH_CTRL_AUTH_MODE_TRAP 0x02 |
Definition at line 1427 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AVB_SR_CLASS1_TAG0
Definition at line 508 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AVB_SR_CLASS1_TAG1
Definition at line 509 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AVB_SR_CLASS1_TYPE
Definition at line 512 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AVB_SR_CLASS2_TAG0
Definition at line 510 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AVB_SR_CLASS2_TAG1
Definition at line 511 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_AVB_SR_CLASS2_TYPE
Definition at line 513 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL0
Definition at line 574 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL1
Definition at line 575 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL1_PORT1_VLAN_MEMBERSHIP
#define KSZ9563_PORTn_CTRL1_PORT1_VLAN_MEMBERSHIP 0x00000001 |
Definition at line 1437 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL1_PORT2_VLAN_MEMBERSHIP
#define KSZ9563_PORTn_CTRL1_PORT2_VLAN_MEMBERSHIP 0x00000002 |
Definition at line 1436 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL1_PORT3_VLAN_MEMBERSHIP
#define KSZ9563_PORTn_CTRL1_PORT3_VLAN_MEMBERSHIP 0x00000004 |
Definition at line 1435 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL1_PORT_VLAN_MEMBERSHIP
#define KSZ9563_PORTn_CTRL1_PORT_VLAN_MEMBERSHIP 0x00000007 |
Definition at line 1434 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL2
Definition at line 576 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL2_802_1X_EN
#define KSZ9563_PORTn_CTRL2_802_1X_EN 0x10 |
Definition at line 1443 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL2_DISCARD_NON_PVID_PKT
#define KSZ9563_PORTn_CTRL2_DISCARD_NON_PVID_PKT 0x20 |
Definition at line 1442 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL2_INGRESS_VLAN_FILT
#define KSZ9563_PORTn_CTRL2_INGRESS_VLAN_FILT 0x40 |
Definition at line 1441 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL2_NULL_VID_LOOKUP_EN
#define KSZ9563_PORTn_CTRL2_NULL_VID_LOOKUP_EN 0x80 |
Definition at line 1440 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_CTRL2_SELF_ADDR_FILT
#define KSZ9563_PORTn_CTRL2_SELF_ADDR_FILT 0x08 |
Definition at line 1444 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_DEFAULT_TAG0
Definition at line 506 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_DEFAULT_TAG0_DEI
#define KSZ9563_PORTn_DEFAULT_TAG0_DEI 0x10 |
Definition at line 1341 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_DEFAULT_TAG0_PCP
#define KSZ9563_PORTn_DEFAULT_TAG0_PCP 0xE0 |
Definition at line 1340 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_DEFAULT_TAG0_VID_MSB
#define KSZ9563_PORTn_DEFAULT_TAG0_VID_MSB 0x0F |
Definition at line 1342 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_DEFAULT_TAG1
Definition at line 507 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_DEFAULT_TAG1_VID_LSB
#define KSZ9563_PORTn_DEFAULT_TAG1_VID_LSB 0xFF |
Definition at line 1345 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_ETH_PHY_REG
Definition at line 591 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_IG_MAC_CTRL
Definition at line 562 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_IG_RATE_LIMIT_CTRL
Definition at line 526 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_MASK
Definition at line 517 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_MASK_ACL
#define KSZ9563_PORTn_INT_MASK_ACL 0x01 |
Definition at line 1355 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_MASK_PHY
#define KSZ9563_PORTn_INT_MASK_PHY 0x02 |
Definition at line 1354 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_MASK_PTP
#define KSZ9563_PORTn_INT_MASK_PTP 0x04 |
Definition at line 1353 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_STATUS
Definition at line 516 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_STATUS_ACL
#define KSZ9563_PORTn_INT_STATUS_ACL 0x01 |
Definition at line 1350 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_STATUS_PHY
#define KSZ9563_PORTn_INT_STATUS_PHY 0x02 |
Definition at line 1349 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_INT_STATUS_PTP
#define KSZ9563_PORTn_INT_STATUS_PTP 0x04 |
Definition at line 1348 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MAC_CTRL0
Definition at line 524 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MAC_CTRL0_BCAST_STORM_PROTECT_EN
#define KSZ9563_PORTn_MAC_CTRL0_BCAST_STORM_PROTECT_EN 0x02 |
Definition at line 1394 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MAC_CTRL1
Definition at line 525 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MAC_CTRL1_BACK_PRESSURE_EN
#define KSZ9563_PORTn_MAC_CTRL1_BACK_PRESSURE_EN 0x08 |
Definition at line 1397 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MAC_CTRL1_PASS_ALL_FRAMES
#define KSZ9563_PORTn_MAC_CTRL1_PASS_ALL_FRAMES 0x01 |
Definition at line 1398 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_CTRL_STAT
Definition at line 539 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_CTRL_STAT_MIB_COUNTER_OVERFLOW
#define KSZ9563_PORTn_MIB_CTRL_STAT_MIB_COUNTER_OVERFLOW 0x80000000 |
Definition at line 1401 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_CTRL_STAT_MIB_COUNTER_VALUE_35_32
#define KSZ9563_PORTn_MIB_CTRL_STAT_MIB_COUNTER_VALUE_35_32 0x0000000F |
Definition at line 1405 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_CTRL_STAT_MIB_FLUSH_FREEZE
#define KSZ9563_PORTn_MIB_CTRL_STAT_MIB_FLUSH_FREEZE 0x01000000 |
Definition at line 1403 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_CTRL_STAT_MIB_INDEX
#define KSZ9563_PORTn_MIB_CTRL_STAT_MIB_INDEX 0x00FF0000 |
Definition at line 1404 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_CTRL_STAT_MIB_READ
#define KSZ9563_PORTn_MIB_CTRL_STAT_MIB_READ 0x02000000 |
Definition at line 1402 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_DATA
Definition at line 540 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIB_DATA_MIB_COUNTER_VALUE_31_0
#define KSZ9563_PORTn_MIB_DATA_MIB_COUNTER_VALUE_31_0 0xFFFFFFFF |
Definition at line 1408 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIRRORING_CTRL
Definition at line 560 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIRRORING_CTRL_RECEIVE_SNIFF
#define KSZ9563_PORTn_MIRRORING_CTRL_RECEIVE_SNIFF 0x40 |
Definition at line 1418 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIRRORING_CTRL_SNIFFER_PORT
#define KSZ9563_PORTn_MIRRORING_CTRL_SNIFFER_PORT 0x02 |
Definition at line 1420 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MIRRORING_CTRL_TRANSMIT_SNIFF
#define KSZ9563_PORTn_MIRRORING_CTRL_TRANSMIT_SNIFF 0x20 |
Definition at line 1419 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MSTP_PTR
Definition at line 577 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MSTP_PTR_MSTP_PTR
#define KSZ9563_PORTn_MSTP_PTR_MSTP_PTR 0x07 |
Definition at line 1447 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MSTP_STATE
Definition at line 578 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MSTP_STATE_LEARNING_DIS
#define KSZ9563_PORTn_MSTP_STATE_LEARNING_DIS 0x01 |
Definition at line 1452 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MSTP_STATE_RECEIVE_EN
#define KSZ9563_PORTn_MSTP_STATE_RECEIVE_EN 0x02 |
Definition at line 1451 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_MSTP_STATE_TRANSMIT_EN
#define KSZ9563_PORTn_MSTP_STATE_TRANSMIT_EN 0x04 |
Definition at line 1450 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_OP_CTRL0
Definition at line 518 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_OP_CTRL0_LOCAL_LOOPBACK
#define KSZ9563_PORTn_OP_CTRL0_LOCAL_LOOPBACK 0x80 |
Definition at line 1358 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_OP_CTRL0_REMOTE_LOOPBACK
#define KSZ9563_PORTn_OP_CTRL0_REMOTE_LOOPBACK 0x40 |
Definition at line 1359 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_OP_CTRL0_TAIL_TAG_EN
#define KSZ9563_PORTn_OP_CTRL0_TAIL_TAG_EN 0x04 |
Definition at line 1360 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_OP_CTRL0_TX_QUEUE_SPLIT_EN
#define KSZ9563_PORTn_OP_CTRL0_TX_QUEUE_SPLIT_EN 0x03 |
Definition at line 1361 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_OP_CTRL1
Definition at line 519 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PME_WOL_EN
Definition at line 515 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PME_WOL_EVENT
Definition at line 514 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_POLICE_CTRL
Definition at line 566 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO0_IG_LIMIT_CTRL
Definition at line 527 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO1_IG_LIMIT_CTRL
Definition at line 528 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO2_IG_LIMIT_CTRL
Definition at line 529 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO3_IG_LIMIT_CTRL
Definition at line 530 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO4_IG_LIMIT_CTRL
Definition at line 531 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO5_IG_LIMIT_CTRL
Definition at line 532 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO6_IG_LIMIT_CTRL
Definition at line 533 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO7_IG_LIMIT_CTRL
Definition at line 534 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO_CTRL
Definition at line 561 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PRIO_TO_QUEUE_MAPPING
Definition at line 565 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_ASYM_CORRECTION
Definition at line 581 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_ASYM_CORRECTION_PTP_ASYM_COR
#define KSZ9563_PORTn_PTP_ASYM_CORRECTION_PTP_ASYM_COR 0x7FFF |
Definition at line 1456 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_ASYM_CORRECTION_PTP_ASYM_COR_SIGN
#define KSZ9563_PORTn_PTP_ASYM_CORRECTION_PTP_ASYM_COR_SIGN 0x8000 |
Definition at line 1455 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_LINK_DELAY
Definition at line 590 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_PDLY_RESP_TSH
Definition at line 586 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_PDLY_RESP_TSL
Definition at line 587 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_RX_LATENCY
Definition at line 579 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_SYNC_TSH
Definition at line 584 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_SYNC_TSL
Definition at line 585 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_EN
Definition at line 589 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_EN_TS_PDLY_REQ_INT_ENB
#define KSZ9563_PORTn_PTP_TS_INT_EN_TS_PDLY_REQ_INT_ENB 0x4000 |
Definition at line 1465 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_EN_TS_PDLY_RESP_INT_ENB
#define KSZ9563_PORTn_PTP_TS_INT_EN_TS_PDLY_RESP_INT_ENB 0x2000 |
Definition at line 1466 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_EN_TS_SYNC_INT_ENB
#define KSZ9563_PORTn_PTP_TS_INT_EN_TS_SYNC_INT_ENB 0x8000 |
Definition at line 1464 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_STAT
Definition at line 588 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_STAT_TS_PDLY_REQ_INT_STATUS
#define KSZ9563_PORTn_PTP_TS_INT_STAT_TS_PDLY_REQ_INT_STATUS 0x4000 |
Definition at line 1460 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_STAT_TS_PDLY_RESP_INT_STATUS
#define KSZ9563_PORTn_PTP_TS_INT_STAT_TS_PDLY_RESP_INT_STATUS 0x2000 |
Definition at line 1461 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TS_INT_STAT_TS_SYNC_INT_STATUS
#define KSZ9563_PORTn_PTP_TS_INT_STAT_TS_SYNC_INT_STATUS 0x8000 |
Definition at line 1459 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_TX_LATENCY
Definition at line 580 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_XDLY_REQ_TSH
Definition at line 582 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTP_XDLY_REQ_TSL
Definition at line 583 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTR
Definition at line 564 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTR_PORT_INDEX
#define KSZ9563_PORTn_PTR_PORT_INDEX 0x00070000 |
Definition at line 1430 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_PTR_QUEUE_PTR
#define KSZ9563_PORTn_PTR_QUEUE_PTR 0x00000003 |
Definition at line 1431 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_QUEUE0_EG_LIMIT_CTRL
Definition at line 535 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_QUEUE1_EG_LIMIT_CTRL
Definition at line 536 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_QUEUE2_EG_LIMIT_CTRL
Definition at line 537 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_QUEUE3_EG_LIMIT_CTRL
Definition at line 538 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS
Definition at line 520 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_DUPLEX
#define KSZ9563_PORTn_STATUS_DUPLEX 0x04 |
Definition at line 1368 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_RX_FLOW_CTRL_EN
#define KSZ9563_PORTn_STATUS_RX_FLOW_CTRL_EN 0x01 |
Definition at line 1370 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_SPEED
#define KSZ9563_PORTn_STATUS_SPEED 0x18 |
Definition at line 1364 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_SPEED_1000MBPS
#define KSZ9563_PORTn_STATUS_SPEED_1000MBPS 0x10 |
Definition at line 1367 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_SPEED_100MBPS
#define KSZ9563_PORTn_STATUS_SPEED_100MBPS 0x08 |
Definition at line 1366 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_SPEED_10MBPS
#define KSZ9563_PORTn_STATUS_SPEED_10MBPS 0x00 |
Definition at line 1365 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_STATUS_TX_FLOW_CTRL_EN
#define KSZ9563_PORTn_STATUS_TX_FLOW_CTRL_EN 0x02 |
Definition at line 1369 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_CREDIT_SHAPER_CTRL0
Definition at line 571 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_CREDIT_SHAPER_CTRL1
Definition at line 572 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_CREDIT_SHAPER_CTRL2
Definition at line 573 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_QUEUE_CTRL0
Definition at line 569 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_QUEUE_CTRL1
Definition at line 570 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_QUEUE_INDEX
Definition at line 567 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_TX_QUEUE_PVID
Definition at line 568 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL0
Definition at line 521 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL0_DUPLEX
#define KSZ9563_PORTn_XMII_CTRL0_DUPLEX 0x40 |
Definition at line 1373 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL0_RX_FLOW_CTRL_EN
#define KSZ9563_PORTn_XMII_CTRL0_RX_FLOW_CTRL_EN 0x08 |
Definition at line 1376 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL0_SPEED_10_100
#define KSZ9563_PORTn_XMII_CTRL0_SPEED_10_100 0x10 |
Definition at line 1375 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL0_TX_FLOW_CTRL_EN
#define KSZ9563_PORTn_XMII_CTRL0_TX_FLOW_CTRL_EN 0x20 |
Definition at line 1374 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1
Definition at line 522 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_IF_TYPE
#define KSZ9563_PORTn_XMII_CTRL1_IF_TYPE 0x03 |
Definition at line 1383 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_IF_TYPE_MII
#define KSZ9563_PORTn_XMII_CTRL1_IF_TYPE_MII 0x00 |
Definition at line 1384 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_IF_TYPE_RGMII
#define KSZ9563_PORTn_XMII_CTRL1_IF_TYPE_RGMII 0x03 |
Definition at line 1386 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_IF_TYPE_RMII
#define KSZ9563_PORTn_XMII_CTRL1_IF_TYPE_RMII 0x01 |
Definition at line 1385 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_MII_RMII_MODE
#define KSZ9563_PORTn_XMII_CTRL1_MII_RMII_MODE 0x04 |
Definition at line 1382 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_RGMII_ID_EG
#define KSZ9563_PORTn_XMII_CTRL1_RGMII_ID_EG 0x08 |
Definition at line 1381 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_RGMII_ID_IG
#define KSZ9563_PORTn_XMII_CTRL1_RGMII_ID_IG 0x10 |
Definition at line 1380 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL1_SPEED_1000
#define KSZ9563_PORTn_XMII_CTRL1_SPEED_1000 0x40 |
Definition at line 1379 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL3
Definition at line 523 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL3_RGMII_IBS_DUPLEX_STATUS
#define KSZ9563_PORTn_XMII_CTRL3_RGMII_IBS_DUPLEX_STATUS 0x08 |
Definition at line 1389 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL3_RGMII_IBS_LINK_STATUS
#define KSZ9563_PORTn_XMII_CTRL3_RGMII_IBS_LINK_STATUS 0x01 |
Definition at line 1391 of file ksz9563_driver.h.
◆ KSZ9563_PORTn_XMII_CTRL3_RGMII_IBS_RX_CLK_SPEED
#define KSZ9563_PORTn_XMII_CTRL3_RGMII_IBS_RX_CLK_SPEED 0x06 |
Definition at line 1390 of file ksz9563_driver.h.
◆ KSZ9563_PTP_EVENT_MSG_PRIO
#define KSZ9563_PTP_EVENT_MSG_PRIO 0x037C |
Definition at line 185 of file ksz9563_driver.h.
◆ KSZ9563_PTP_EVENT_MSG_PRIO_OVERRIDE
#define KSZ9563_PTP_EVENT_MSG_PRIO_OVERRIDE 0x80 |
Definition at line 1013 of file ksz9563_driver.h.
◆ KSZ9563_PTP_EVENT_MSG_PRIO_PRIORITY
#define KSZ9563_PTP_EVENT_MSG_PRIO_PRIORITY 0x0F |
Definition at line 1014 of file ksz9563_driver.h.
◆ KSZ9563_PTP_NON_EVENT_MSG_PRIO
#define KSZ9563_PTP_NON_EVENT_MSG_PRIO 0x037D |
Definition at line 186 of file ksz9563_driver.h.
◆ KSZ9563_PTP_NON_EVENT_MSG_PRIO_OVERRIDE
#define KSZ9563_PTP_NON_EVENT_MSG_PRIO_OVERRIDE 0x80 |
Definition at line 1017 of file ksz9563_driver.h.
◆ KSZ9563_PTP_NON_EVENT_MSG_PRIO_PRIORITY
#define KSZ9563_PTP_NON_EVENT_MSG_PRIO_PRIORITY 0x0F |
Definition at line 1018 of file ksz9563_driver.h.
◆ KSZ9563_PWR_DOWN_CTRL0
#define KSZ9563_PWR_DOWN_CTRL0 0x0201 |
Definition at line 115 of file ksz9563_driver.h.
◆ KSZ9563_PWR_DOWN_CTRL0_PLL_PWR_DOWN
#define KSZ9563_PWR_DOWN_CTRL0_PLL_PWR_DOWN 0x20 |
Definition at line 856 of file ksz9563_driver.h.
◆ KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE
#define KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE 0x18 |
Definition at line 857 of file ksz9563_driver.h.
◆ KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE_EDPD
#define KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE_EDPD 0x08 |
Definition at line 859 of file ksz9563_driver.h.
◆ KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE_NORMAL
#define KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE_NORMAL 0x00 |
Definition at line 858 of file ksz9563_driver.h.
◆ KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE_SOFT_PWR_DOWN
#define KSZ9563_PWR_DOWN_CTRL0_PWR_MGMT_MODE_SOFT_PWR_DOWN 0x10 |
Definition at line 860 of file ksz9563_driver.h.
◆ KSZ9563_QUEUE_MGMT_CTRL0
#define KSZ9563_QUEUE_MGMT_CTRL0 0x0390 |
Definition at line 187 of file ksz9563_driver.h.
◆ KSZ9563_QUEUE_MGMT_CTRL0_PRIORITY_2Q
#define KSZ9563_QUEUE_MGMT_CTRL0_PRIORITY_2Q 0x000000C0 |
Definition at line 1021 of file ksz9563_driver.h.
◆ KSZ9563_QUEUE_MGMT_CTRL0_UNICAST_PORT_VLAN_DISCARD
#define KSZ9563_QUEUE_MGMT_CTRL0_UNICAST_PORT_VLAN_DISCARD 0x00000002 |
Definition at line 1022 of file ksz9563_driver.h.
◆ KSZ9563_RES_MCAST_TABLE_ENTRY2
#define KSZ9563_RES_MCAST_TABLE_ENTRY2 0x0424 |
Definition at line 201 of file ksz9563_driver.h.
◆ KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT1_FORWARD
#define KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT1_FORWARD 0x00000001 |
Definition at line 1129 of file ksz9563_driver.h.
◆ KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT2_FORWARD
#define KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT2_FORWARD 0x00000002 |
Definition at line 1128 of file ksz9563_driver.h.
◆ KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT3_FORWARD
#define KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT3_FORWARD 0x00000004 |
Definition at line 1127 of file ksz9563_driver.h.
◆ KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT_FORWARD
#define KSZ9563_RES_MCAST_TABLE_ENTRY2_PORT_FORWARD 0x00000007 |
Definition at line 1126 of file ksz9563_driver.h.
◆ KSZ9563_RLB
#define KSZ9563_RLB 0x11 |
Definition at line 84 of file ksz9563_driver.h.
◆ KSZ9563_RLB_REMOTE_LOOPBACK
#define KSZ9563_RLB_REMOTE_LOOPBACK 0x0100 |
Definition at line 705 of file ksz9563_driver.h.
◆ KSZ9563_RXERCTR
#define KSZ9563_RXERCTR 0x15 |
Definition at line 87 of file ksz9563_driver.h.
◆ KSZ9563_SERIAL_IO_CTRL
#define KSZ9563_SERIAL_IO_CTRL 0x0100 |
Definition at line 108 of file ksz9563_driver.h.
◆ KSZ9563_SERIAL_IO_CTRL_AUTO_SPI_DATA_OUT_EDGE_SEL
#define KSZ9563_SERIAL_IO_CTRL_AUTO_SPI_DATA_OUT_EDGE_SEL 0x02 |
Definition at line 804 of file ksz9563_driver.h.
◆ KSZ9563_SERIAL_IO_CTRL_MIIM_PREAMBLE_SUPPR
#define KSZ9563_SERIAL_IO_CTRL_MIIM_PREAMBLE_SUPPR 0x04 |
Definition at line 803 of file ksz9563_driver.h.
◆ KSZ9563_SERIAL_IO_CTRL_SPI_DATA_OUT_EDGE_SEL
#define KSZ9563_SERIAL_IO_CTRL_SPI_DATA_OUT_EDGE_SEL 0x01 |
Definition at line 805 of file ksz9563_driver.h.
◆ KSZ9563_SERIAL_IO_CTRL_SPI_DATA_OUT_EDGE_SEL_FALLING
#define KSZ9563_SERIAL_IO_CTRL_SPI_DATA_OUT_EDGE_SEL_FALLING 0x00 |
Definition at line 806 of file ksz9563_driver.h.
◆ KSZ9563_SERIAL_IO_CTRL_SPI_DATA_OUT_EDGE_SEL_RISING
#define KSZ9563_SERIAL_IO_CTRL_SPI_DATA_OUT_EDGE_SEL_RISING 0x01 |
Definition at line 807 of file ksz9563_driver.h.
◆ KSZ9563_SPI_CMD_ADDR
#define KSZ9563_SPI_CMD_ADDR 0x001FFFE0 |
Definition at line 51 of file ksz9563_driver.h.
◆ KSZ9563_SPI_CMD_READ
#define KSZ9563_SPI_CMD_READ 0x60000000 |
Definition at line 50 of file ksz9563_driver.h.
◆ KSZ9563_SPI_CMD_WRITE
#define KSZ9563_SPI_CMD_WRITE 0x40000000 |
Definition at line 49 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MAC_TABLE_SIZE
#define KSZ9563_STATIC_MAC_TABLE_SIZE 16 |
Definition at line 54 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL
#define KSZ9563_STATIC_MCAST_TABLE_CTRL 0x041C |
Definition at line 196 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL_ACTION
#define KSZ9563_STATIC_MCAST_TABLE_CTRL_ACTION 0x00000001 |
Definition at line 1077 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL_ACTION_READ
#define KSZ9563_STATIC_MCAST_TABLE_CTRL_ACTION_READ 0x00000000 |
Definition at line 1078 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL_ACTION_WRITE
#define KSZ9563_STATIC_MCAST_TABLE_CTRL_ACTION_WRITE 0x00000001 |
Definition at line 1079 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL_START_FINISH
#define KSZ9563_STATIC_MCAST_TABLE_CTRL_START_FINISH 0x00000080 |
Definition at line 1075 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL_TABLE_INDEX
#define KSZ9563_STATIC_MCAST_TABLE_CTRL_TABLE_INDEX 0x003F0000 |
Definition at line 1074 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_MCAST_TABLE_CTRL_TABLE_SELECT
#define KSZ9563_STATIC_MCAST_TABLE_CTRL_TABLE_SELECT 0x00000002 |
Definition at line 1076 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY1
#define KSZ9563_STATIC_TABLE_ENTRY1 0x0420 |
Definition at line 198 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY1_DES_FILTER
#define KSZ9563_STATIC_TABLE_ENTRY1_DES_FILTER 0x20000000 |
Definition at line 1106 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY1_MSTP
#define KSZ9563_STATIC_TABLE_ENTRY1_MSTP 0x00000007 |
Definition at line 1108 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY1_PRIORITY
#define KSZ9563_STATIC_TABLE_ENTRY1_PRIORITY 0x1C000000 |
Definition at line 1107 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY1_SRC_FILTER
#define KSZ9563_STATIC_TABLE_ENTRY1_SRC_FILTER 0x40000000 |
Definition at line 1105 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY1_VALID
#define KSZ9563_STATIC_TABLE_ENTRY1_VALID 0x80000000 |
Definition at line 1104 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2
#define KSZ9563_STATIC_TABLE_ENTRY2 0x0424 |
Definition at line 200 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2_OVERRIDE
#define KSZ9563_STATIC_TABLE_ENTRY2_OVERRIDE 0x80000000 |
Definition at line 1111 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2_PORT1_FORWARD
#define KSZ9563_STATIC_TABLE_ENTRY2_PORT1_FORWARD 0x00000001 |
Definition at line 1116 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2_PORT2_FORWARD
#define KSZ9563_STATIC_TABLE_ENTRY2_PORT2_FORWARD 0x00000002 |
Definition at line 1115 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2_PORT3_FORWARD
#define KSZ9563_STATIC_TABLE_ENTRY2_PORT3_FORWARD 0x00000004 |
Definition at line 1114 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2_PORT_FORWARD
#define KSZ9563_STATIC_TABLE_ENTRY2_PORT_FORWARD 0x00000007 |
Definition at line 1113 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY2_USE_FID
#define KSZ9563_STATIC_TABLE_ENTRY2_USE_FID 0x40000000 |
Definition at line 1112 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY3
#define KSZ9563_STATIC_TABLE_ENTRY3 0x0428 |
Definition at line 203 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY3_FID
#define KSZ9563_STATIC_TABLE_ENTRY3_FID 0x007F0000 |
Definition at line 1119 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY3_MAC_ADDR_MSB
#define KSZ9563_STATIC_TABLE_ENTRY3_MAC_ADDR_MSB 0x0000FFFF |
Definition at line 1120 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY4
#define KSZ9563_STATIC_TABLE_ENTRY4 0x042C |
Definition at line 205 of file ksz9563_driver.h.
◆ KSZ9563_STATIC_TABLE_ENTRY4_MAC_ADDR_LSB
#define KSZ9563_STATIC_TABLE_ENTRY4_MAC_ADDR_LSB 0xFFFFFFFF |
Definition at line 1123 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_ISP_TPID
#define KSZ9563_SWITCH_ISP_TPID 0x030A |
Definition at line 125 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_ISP_TPID_ISP_TAG_TPID
#define KSZ9563_SWITCH_ISP_TPID_ISP_TAG_TPID 0xFFFF |
Definition at line 879 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0
#define KSZ9563_SWITCH_LUE_CTRL0 0x0310 |
Definition at line 127 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_AGE_COUNT
#define KSZ9563_SWITCH_LUE_CTRL0_AGE_COUNT 0x38 |
Definition at line 888 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_AGE_COUNT_DEFAULT
#define KSZ9563_SWITCH_LUE_CTRL0_AGE_COUNT_DEFAULT 0x20 |
Definition at line 889 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_DROP_INVALID_VID
#define KSZ9563_SWITCH_LUE_CTRL0_DROP_INVALID_VID 0x40 |
Definition at line 887 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION
#define KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION 0x03 |
Definition at line 891 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION_CRC
#define KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION_CRC 0x01 |
Definition at line 893 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION_NONE
#define KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION_NONE 0x00 |
Definition at line 892 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION_XOR
#define KSZ9563_SWITCH_LUE_CTRL0_HASH_OPTION_XOR 0x02 |
Definition at line 894 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_RESERVED_MCAST_LOOKUP_EN
#define KSZ9563_SWITCH_LUE_CTRL0_RESERVED_MCAST_LOOKUP_EN 0x04 |
Definition at line 890 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL0_VLAN_EN
#define KSZ9563_SWITCH_LUE_CTRL0_VLAN_EN 0x80 |
Definition at line 886 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1
#define KSZ9563_SWITCH_LUE_CTRL1 0x0311 |
Definition at line 128 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_AGING_EN
#define KSZ9563_SWITCH_LUE_CTRL1_AGING_EN 0x04 |
Definition at line 902 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_FAST_AGING
#define KSZ9563_SWITCH_LUE_CTRL1_FAST_AGING 0x02 |
Definition at line 903 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_FLUSH_ALU_TABLE
#define KSZ9563_SWITCH_LUE_CTRL1_FLUSH_ALU_TABLE 0x20 |
Definition at line 899 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_FLUSH_MSTP_ENTRIES
#define KSZ9563_SWITCH_LUE_CTRL1_FLUSH_MSTP_ENTRIES 0x10 |
Definition at line 900 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_LINK_DOWN_FLUSH
#define KSZ9563_SWITCH_LUE_CTRL1_LINK_DOWN_FLUSH 0x01 |
Definition at line 904 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_MCAST_SRC_ADDR_FILT
#define KSZ9563_SWITCH_LUE_CTRL1_MCAST_SRC_ADDR_FILT 0x08 |
Definition at line 901 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_SELF_ADDR_FILT
#define KSZ9563_SWITCH_LUE_CTRL1_SELF_ADDR_FILT 0x40 |
Definition at line 898 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL1_UNICAST_LEARNING_DIS
#define KSZ9563_SWITCH_LUE_CTRL1_UNICAST_LEARNING_DIS 0x80 |
Definition at line 897 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2
#define KSZ9563_SWITCH_LUE_CTRL2 0x0312 |
Definition at line 129 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_DOUBLE_TAG_MCAST_TRAP
#define KSZ9563_SWITCH_LUE_CTRL2_DOUBLE_TAG_MCAST_TRAP 0x40 |
Definition at line 907 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_DYNAMIC_ENTRY_EG_VLAN_FILT
#define KSZ9563_SWITCH_LUE_CTRL2_DYNAMIC_ENTRY_EG_VLAN_FILT 0x20 |
Definition at line 908 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION
#define KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION 0x0C |
Definition at line 910 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_BOTH
#define KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_BOTH 0x0C |
Definition at line 914 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_DYNAMIC
#define KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_DYNAMIC 0x04 |
Definition at line 912 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_NONE
#define KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_NONE 0x00 |
Definition at line 911 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_STATIC
#define KSZ9563_SWITCH_LUE_CTRL2_FLUSH_OPTION_STATIC 0x08 |
Definition at line 913 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_MAC_ADDR_PRIORITY
#define KSZ9563_SWITCH_LUE_CTRL2_MAC_ADDR_PRIORITY 0x03 |
Definition at line 915 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL2_STATIC_ENTRY_EG_VLAN_FILT
#define KSZ9563_SWITCH_LUE_CTRL2_STATIC_ENTRY_EG_VLAN_FILT 0x10 |
Definition at line 909 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL3
#define KSZ9563_SWITCH_LUE_CTRL3 0x0313 |
Definition at line 130 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL3_AGE_PERIOD
#define KSZ9563_SWITCH_LUE_CTRL3_AGE_PERIOD 0xFF |
Definition at line 918 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_LUE_CTRL3_AGE_PERIOD_DEFAULT
#define KSZ9563_SWITCH_LUE_CTRL3_AGE_PERIOD_DEFAULT 0x4B |
Definition at line 919 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_ADDR0
#define KSZ9563_SWITCH_MAC_ADDR0 0x0302 |
Definition at line 118 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_ADDR1
#define KSZ9563_SWITCH_MAC_ADDR1 0x0303 |
Definition at line 119 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_ADDR2
#define KSZ9563_SWITCH_MAC_ADDR2 0x0304 |
Definition at line 120 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_ADDR3
#define KSZ9563_SWITCH_MAC_ADDR3 0x0305 |
Definition at line 121 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_ADDR4
#define KSZ9563_SWITCH_MAC_ADDR4 0x0306 |
Definition at line 122 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_ADDR5
#define KSZ9563_SWITCH_MAC_ADDR5 0x0307 |
Definition at line 123 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL0
#define KSZ9563_SWITCH_MAC_CTRL0 0x0330 |
Definition at line 139 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL0_AGGRESSIVE_BACK_OFF_EN
#define KSZ9563_SWITCH_MAC_CTRL0_AGGRESSIVE_BACK_OFF_EN 0x01 |
Definition at line 969 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL0_ALT_BACK_OFF_MODE
#define KSZ9563_SWITCH_MAC_CTRL0_ALT_BACK_OFF_MODE 0x80 |
Definition at line 966 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL0_FLOW_CTRL_PKT_DROP_MODE
#define KSZ9563_SWITCH_MAC_CTRL0_FLOW_CTRL_PKT_DROP_MODE 0x02 |
Definition at line 968 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL0_FRAME_LEN_CHECK_EN
#define KSZ9563_SWITCH_MAC_CTRL0_FRAME_LEN_CHECK_EN 0x08 |
Definition at line 967 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1
#define KSZ9563_SWITCH_MAC_CTRL1 0x0331 |
Definition at line 140 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_BACK_PRESSURE_MODE
#define KSZ9563_SWITCH_MAC_CTRL1_BACK_PRESSURE_MODE 0x20 |
Definition at line 973 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_FLOW_CTRL_FAIR_MODE
#define KSZ9563_SWITCH_MAC_CTRL1_FLOW_CTRL_FAIR_MODE 0x10 |
Definition at line 974 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_JUMBO_PKT_SUPPORT
#define KSZ9563_SWITCH_MAC_CTRL1_JUMBO_PKT_SUPPORT 0x04 |
Definition at line 976 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_MAX_PKT_SIZE_CHECK_DIS
#define KSZ9563_SWITCH_MAC_CTRL1_MAX_PKT_SIZE_CHECK_DIS 0x02 |
Definition at line 977 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_MCAST_STORM_PROTECT_DIS
#define KSZ9563_SWITCH_MAC_CTRL1_MCAST_STORM_PROTECT_DIS 0x40 |
Definition at line 972 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_NO_EXCESSIVE_COL_DROP
#define KSZ9563_SWITCH_MAC_CTRL1_NO_EXCESSIVE_COL_DROP 0x08 |
Definition at line 975 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL1_PASS_SHORT_PKT
#define KSZ9563_SWITCH_MAC_CTRL1_PASS_SHORT_PKT 0x01 |
Definition at line 978 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL2
#define KSZ9563_SWITCH_MAC_CTRL2 0x0332 |
Definition at line 141 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL2_BCAST_STORM_PROTECT_RATE_MSB
#define KSZ9563_SWITCH_MAC_CTRL2_BCAST_STORM_PROTECT_RATE_MSB 0x07 |
Definition at line 982 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL2_NULL_VID_REPLACEMENT
#define KSZ9563_SWITCH_MAC_CTRL2_NULL_VID_REPLACEMENT 0x08 |
Definition at line 981 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL3
#define KSZ9563_SWITCH_MAC_CTRL3 0x0333 |
Definition at line 142 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL3_BCAST_STORM_PROTECT_RATE_LSB
#define KSZ9563_SWITCH_MAC_CTRL3_BCAST_STORM_PROTECT_RATE_LSB 0xFF |
Definition at line 985 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL4
#define KSZ9563_SWITCH_MAC_CTRL4 0x0334 |
Definition at line 143 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL4_PASS_FLOW_CTRL_PKT
#define KSZ9563_SWITCH_MAC_CTRL4_PASS_FLOW_CTRL_PKT 0x01 |
Definition at line 988 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL5
#define KSZ9563_SWITCH_MAC_CTRL5 0x0335 |
Definition at line 144 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD
#define KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD 0x30 |
Definition at line 991 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD_16MS
#define KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD_16MS 0x00 |
Definition at line 992 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD_256MS
#define KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD_256MS 0x20 |
Definition at line 994 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD_64MS
#define KSZ9563_SWITCH_MAC_CTRL5_IG_RATE_LIMIT_PERIOD_64MS 0x10 |
Definition at line 993 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MAC_CTRL5_QUEUE_BASED_EG_RATE_LIMITE_EN
#define KSZ9563_SWITCH_MAC_CTRL5_QUEUE_BASED_EG_RATE_LIMITE_EN 0x08 |
Definition at line 995 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MIB_CTRL
#define KSZ9563_SWITCH_MIB_CTRL 0x0336 |
Definition at line 145 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MIB_CTRL_FLUSH
#define KSZ9563_SWITCH_MIB_CTRL_FLUSH 0x80 |
Definition at line 998 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MIB_CTRL_FREEZE
#define KSZ9563_SWITCH_MIB_CTRL_FREEZE 0x40 |
Definition at line 999 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MTU
#define KSZ9563_SWITCH_MTU 0x0308 |
Definition at line 124 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MTU_MTU
#define KSZ9563_SWITCH_MTU_MTU 0x3FFF |
Definition at line 875 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_MTU_MTU_DEFAULT
#define KSZ9563_SWITCH_MTU_MTU_DEFAULT 0x07D0 |
Definition at line 876 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_OP
#define KSZ9563_SWITCH_OP 0x0300 |
Definition at line 117 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_OP_DOUBLE_TAG_EN
#define KSZ9563_SWITCH_OP_DOUBLE_TAG_EN 0x80 |
Definition at line 870 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_OP_SOFT_HARD_RESET
#define KSZ9563_SWITCH_OP_SOFT_HARD_RESET 0x02 |
Definition at line 871 of file ksz9563_driver.h.
◆ KSZ9563_SWITCH_OP_START_SWITCH
#define KSZ9563_SWITCH_OP_START_SWITCH 0x01 |
Definition at line 872 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_DEST_PORT1
#define KSZ9563_TAIL_TAG_DEST_PORT1 0x01 |
Definition at line 63 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_DEST_PORT2
#define KSZ9563_TAIL_TAG_DEST_PORT2 0x02 |
Definition at line 62 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_DEST_PORT3
#define KSZ9563_TAIL_TAG_DEST_PORT3 0x04 |
Definition at line 61 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_NORMAL_ADDR_LOOKUP
#define KSZ9563_TAIL_TAG_NORMAL_ADDR_LOOKUP 0x40 |
Definition at line 58 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_PORT_BLOCKING_OVERRIDE
#define KSZ9563_TAIL_TAG_PORT_BLOCKING_OVERRIDE 0x20 |
Definition at line 59 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_PRIORITY
#define KSZ9563_TAIL_TAG_PRIORITY 0x18 |
Definition at line 60 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_PTP_MSG
#define KSZ9563_TAIL_TAG_PTP_MSG 0x80 |
Definition at line 66 of file ksz9563_driver.h.
◆ KSZ9563_TAIL_TAG_SRC_PORT
#define KSZ9563_TAIL_TAG_SRC_PORT 0x03 |
Definition at line 67 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1
#define KSZ9563_TOU_CTRL1 0x0538 |
Definition at line 225 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_CASCADE_MODE_DONE
#define KSZ9563_TOU_CTRL1_CASCADE_MODE_DONE 0x0C000000 |
Definition at line 1219 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_CASCADE_MODE_ENB
#define KSZ9563_TOU_CTRL1_CASCADE_MODE_ENB 0x80000000 |
Definition at line 1217 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_CASCADE_MODE_TAIL
#define KSZ9563_TOU_CTRL1_CASCADE_MODE_TAIL 0x40000000 |
Definition at line 1218 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_EDGE
#define KSZ9563_TOU_CTRL1_TRIGGER_EDGE 0x00800000 |
Definition at line 1222 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_GPIO
#define KSZ9563_TOU_CTRL1_TRIGGER_GPIO 0x00010000 |
Definition at line 1231 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_GPIO_1
#define KSZ9563_TOU_CTRL1_TRIGGER_GPIO_1 0x00000000 |
Definition at line 1232 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_GPIO_2
#define KSZ9563_TOU_CTRL1_TRIGGER_GPIO_2 0x00010000 |
Definition at line 1233 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_NOTIFY
#define KSZ9563_TOU_CTRL1_TRIGGER_NOTIFY 0x01000000 |
Definition at line 1221 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_NOW
#define KSZ9563_TOU_CTRL1_TRIGGER_NOW 0x02000000 |
Definition at line 1220 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN 0x00700000 |
Definition at line 1223 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_ITERATION
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_ITERATION 0x0000FFFF |
Definition at line 1234 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_NEG_CYCLE
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_NEG_CYCLE 0x00400000 |
Definition at line 1228 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_NEG_EDGE
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_NEG_EDGE 0x00000000 |
Definition at line 1224 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_NEG_PULSE
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_NEG_PULSE 0x00200000 |
Definition at line 1226 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_POS_CYCLE
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_POS_CYCLE 0x00500000 |
Definition at line 1229 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_POS_EDGE
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_POS_EDGE 0x00100000 |
Definition at line 1225 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_POS_PULSE
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_POS_PULSE 0x00300000 |
Definition at line 1227 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_REG_OUTPUT
#define KSZ9563_TOU_CTRL1_TRIGGER_PATTERN_REG_OUTPUT 0x00600000 |
Definition at line 1230 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL2
#define KSZ9563_TOU_CTRL2 0x053C |
Definition at line 226 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL2_TRIGGER_CYCLE_WIDTH
#define KSZ9563_TOU_CTRL2_TRIGGER_CYCLE_WIDTH 0xFFFFFFFF |
Definition at line 1237 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL3
#define KSZ9563_TOU_CTRL3 0x0540 |
Definition at line 227 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL3_TRIGGER_BIT_PATTERN
#define KSZ9563_TOU_CTRL3_TRIGGER_BIT_PATTERN 0x0000FFFF |
Definition at line 1241 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL3_TRIGGER_CYCLE
#define KSZ9563_TOU_CTRL3_TRIGGER_CYCLE 0xFFFF0000 |
Definition at line 1240 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL4
#define KSZ9563_TOU_CTRL4 0x0544 |
Definition at line 228 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL4_CASCADE_INTERATION_CYCLE_TIME
#define KSZ9563_TOU_CTRL4_CASCADE_INTERATION_CYCLE_TIME 0xFFFFFFFF |
Definition at line 1244 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL5
#define KSZ9563_TOU_CTRL5 0x0548 |
Definition at line 229 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL5_PPS_PULSE_WIDTH
#define KSZ9563_TOU_CTRL5_PPS_PULSE_WIDTH 0x00FF0000 |
Definition at line 1247 of file ksz9563_driver.h.
◆ KSZ9563_TOU_CTRL5_TRIGGER_PULSE_WIDTH
#define KSZ9563_TOU_CTRL5_TRIGGER_PULSE_WIDTH 0x0000FFFF |
Definition at line 1248 of file ksz9563_driver.h.
◆ KSZ9563_TOU_TARGET_TIME_NS
#define KSZ9563_TOU_TARGET_TIME_NS 0x0530 |
Definition at line 223 of file ksz9563_driver.h.
◆ KSZ9563_TOU_TARGET_TIME_NS_TRIGGER_TARGET_TIME_NS
#define KSZ9563_TOU_TARGET_TIME_NS_TRIGGER_TARGET_TIME_NS 0x3FFFFFFF |
Definition at line 1211 of file ksz9563_driver.h.
◆ KSZ9563_TOU_TARGET_TIME_S
#define KSZ9563_TOU_TARGET_TIME_S 0x0534 |
Definition at line 224 of file ksz9563_driver.h.
◆ KSZ9563_TOU_TARGET_TIME_S_TRIGGER_TARGET_TIME_S
#define KSZ9563_TOU_TARGET_TIME_S_TRIGGER_TARGET_TIME_S 0xFFFFFFFF |
Definition at line 1214 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT
#define KSZ9563_TS_CTRL_STAT 0x052C |
Definition at line 222 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_GPIO_IN
#define KSZ9563_TS_CTRL_STAT_GPIO_IN 0x00000080 |
Definition at line 1201 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_GPIO_OEN
#define KSZ9563_TS_CTRL_STAT_GPIO_OEN 0x00000040 |
Definition at line 1202 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_GPIO_OUT_SEL
#define KSZ9563_TS_CTRL_STAT_GPIO_OUT_SEL 0x00000100 |
Definition at line 1200 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_TRIGGER_ACTIVE
#define KSZ9563_TS_CTRL_STAT_TRIGGER_ACTIVE 0x00000010 |
Definition at line 1204 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_TRIGGER_EN
#define KSZ9563_TS_CTRL_STAT_TRIGGER_EN 0x00000008 |
Definition at line 1205 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_TRIGGER_SW_RESET
#define KSZ9563_TS_CTRL_STAT_TRIGGER_SW_RESET 0x00000004 |
Definition at line 1206 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_TS_ENB
#define KSZ9563_TS_CTRL_STAT_TS_ENB 0x00000002 |
Definition at line 1207 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_TS_INT_ENB
#define KSZ9563_TS_CTRL_STAT_TS_INT_ENB 0x00000020 |
Definition at line 1203 of file ksz9563_driver.h.
◆ KSZ9563_TS_CTRL_STAT_TS_SW_RESET
#define KSZ9563_TS_CTRL_STAT_TS_SW_RESET 0x00000001 |
Definition at line 1208 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_NS
#define KSZ9563_TS_SAMPLE1_TIME_NS 0x0554 |
Definition at line 231 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_NS_TS_SAMPLE_EDGE_1ST
#define KSZ9563_TS_SAMPLE1_TIME_NS_TS_SAMPLE_EDGE_1ST 0x40000000 |
Definition at line 1260 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_NS_TS_SAMPLE_TIME_NS_1ST
#define KSZ9563_TS_SAMPLE1_TIME_NS_TS_SAMPLE_TIME_NS_1ST 0x3FFFFFFF |
Definition at line 1261 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_PHASE
#define KSZ9563_TS_SAMPLE1_TIME_PHASE 0x055C |
Definition at line 233 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_1ST
#define KSZ9563_TS_SAMPLE1_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_1ST 0x00000007 |
Definition at line 1267 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_S
#define KSZ9563_TS_SAMPLE1_TIME_S 0x0558 |
Definition at line 232 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE1_TIME_S_TS_SAMPLE_TIME_S_1ST
#define KSZ9563_TS_SAMPLE1_TIME_S_TS_SAMPLE_TIME_S_1ST 0xFFFFFFFF |
Definition at line 1264 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_NS
#define KSZ9563_TS_SAMPLE2_TIME_NS 0x0560 |
Definition at line 234 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_NS_TS_SAMPLE_EDGE_2ND
#define KSZ9563_TS_SAMPLE2_TIME_NS_TS_SAMPLE_EDGE_2ND 0x40000000 |
Definition at line 1270 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_NS_TS_SAMPLE_TIME_NS_2ND
#define KSZ9563_TS_SAMPLE2_TIME_NS_TS_SAMPLE_TIME_NS_2ND 0x3FFFFFFF |
Definition at line 1271 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_PHASE
#define KSZ9563_TS_SAMPLE2_TIME_PHASE 0x0568 |
Definition at line 236 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_2ND
#define KSZ9563_TS_SAMPLE2_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_2ND 0x00000007 |
Definition at line 1277 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_S
#define KSZ9563_TS_SAMPLE2_TIME_S 0x0564 |
Definition at line 235 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE2_TIME_S_TS_SAMPLE_TIME_S_2ND
#define KSZ9563_TS_SAMPLE2_TIME_S_TS_SAMPLE_TIME_S_2ND 0xFFFFFFFF |
Definition at line 1274 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_NS
#define KSZ9563_TS_SAMPLE3_TIME_NS 0x056C |
Definition at line 237 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_NS_TS_SAMPLE_EDGE_3RD
#define KSZ9563_TS_SAMPLE3_TIME_NS_TS_SAMPLE_EDGE_3RD 0x40000000 |
Definition at line 1280 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_NS_TS_SAMPLE_TIME_NS_3RD
#define KSZ9563_TS_SAMPLE3_TIME_NS_TS_SAMPLE_TIME_NS_3RD 0x3FFFFFFF |
Definition at line 1281 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_PHASE
#define KSZ9563_TS_SAMPLE3_TIME_PHASE 0x0574 |
Definition at line 239 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_3RD
#define KSZ9563_TS_SAMPLE3_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_3RD 0x00000007 |
Definition at line 1287 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_S
#define KSZ9563_TS_SAMPLE3_TIME_S 0x0570 |
Definition at line 238 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE3_TIME_S_TS_SAMPLE_TIME_S_3RD
#define KSZ9563_TS_SAMPLE3_TIME_S_TS_SAMPLE_TIME_S_3RD 0xFFFFFFFF |
Definition at line 1284 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_NS
#define KSZ9563_TS_SAMPLE4_TIME_NS 0x0578 |
Definition at line 240 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_NS_TS_SAMPLE_EDGE_4TH
#define KSZ9563_TS_SAMPLE4_TIME_NS_TS_SAMPLE_EDGE_4TH 0x40000000 |
Definition at line 1290 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_NS_TS_SAMPLE_TIME_NS_4TH
#define KSZ9563_TS_SAMPLE4_TIME_NS_TS_SAMPLE_TIME_NS_4TH 0x3FFFFFFF |
Definition at line 1291 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_PHASE
#define KSZ9563_TS_SAMPLE4_TIME_PHASE 0x0580 |
Definition at line 242 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_4TH
#define KSZ9563_TS_SAMPLE4_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_4TH 0x00000007 |
Definition at line 1297 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_S
#define KSZ9563_TS_SAMPLE4_TIME_S 0x057C |
Definition at line 241 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE4_TIME_S_TS_SAMPLE_TIME_S_4TH
#define KSZ9563_TS_SAMPLE4_TIME_S_TS_SAMPLE_TIME_S_4TH 0xFFFFFFFF |
Definition at line 1294 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_NS
#define KSZ9563_TS_SAMPLE5_TIME_NS 0x0584 |
Definition at line 243 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_NS_TS_SAMPLE_EDGE_5TH
#define KSZ9563_TS_SAMPLE5_TIME_NS_TS_SAMPLE_EDGE_5TH 0x40000000 |
Definition at line 1300 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_NS_TS_SAMPLE_TIME_NS_5TH
#define KSZ9563_TS_SAMPLE5_TIME_NS_TS_SAMPLE_TIME_NS_5TH 0x3FFFFFFF |
Definition at line 1301 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_PHASE
#define KSZ9563_TS_SAMPLE5_TIME_PHASE 0x058C |
Definition at line 245 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_5TH
#define KSZ9563_TS_SAMPLE5_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_5TH 0x00000007 |
Definition at line 1307 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_S
#define KSZ9563_TS_SAMPLE5_TIME_S 0x0588 |
Definition at line 244 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE5_TIME_S_TS_SAMPLE_TIME_S_5TH
#define KSZ9563_TS_SAMPLE5_TIME_S_TS_SAMPLE_TIME_S_5TH 0xFFFFFFFF |
Definition at line 1304 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_NS
#define KSZ9563_TS_SAMPLE6_TIME_NS 0x0590 |
Definition at line 246 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_NS_TS_SAMPLE_EDGE_6TH
#define KSZ9563_TS_SAMPLE6_TIME_NS_TS_SAMPLE_EDGE_6TH 0x40000000 |
Definition at line 1310 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_NS_TS_SAMPLE_TIME_NS_6TH
#define KSZ9563_TS_SAMPLE6_TIME_NS_TS_SAMPLE_TIME_NS_6TH 0x3FFFFFFF |
Definition at line 1311 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_PHASE
#define KSZ9563_TS_SAMPLE6_TIME_PHASE 0x0598 |
Definition at line 248 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_6TH
#define KSZ9563_TS_SAMPLE6_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_6TH 0x00000007 |
Definition at line 1317 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_S
#define KSZ9563_TS_SAMPLE6_TIME_S 0x0594 |
Definition at line 247 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE6_TIME_S_TS_SAMPLE_TIME_S_6TH
#define KSZ9563_TS_SAMPLE6_TIME_S_TS_SAMPLE_TIME_S_6TH 0xFFFFFFFF |
Definition at line 1314 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_NS
#define KSZ9563_TS_SAMPLE7_TIME_NS 0x059C |
Definition at line 249 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_NS_TS_SAMPLE_EDGE_7TH
#define KSZ9563_TS_SAMPLE7_TIME_NS_TS_SAMPLE_EDGE_7TH 0x40000000 |
Definition at line 1320 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_NS_TS_SAMPLE_TIME_NS_7TH
#define KSZ9563_TS_SAMPLE7_TIME_NS_TS_SAMPLE_TIME_NS_7TH 0x3FFFFFFF |
Definition at line 1321 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_PHASE
#define KSZ9563_TS_SAMPLE7_TIME_PHASE 0x05A4 |
Definition at line 251 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_7TH
#define KSZ9563_TS_SAMPLE7_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_7TH 0x00000007 |
Definition at line 1327 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_S
#define KSZ9563_TS_SAMPLE7_TIME_S 0x05A0 |
Definition at line 250 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE7_TIME_S_TS_SAMPLE_TIME_S_7TH
#define KSZ9563_TS_SAMPLE7_TIME_S_TS_SAMPLE_TIME_S_7TH 0xFFFFFFFF |
Definition at line 1324 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_NS
#define KSZ9563_TS_SAMPLE8_TIME_NS 0x05A8 |
Definition at line 252 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_NS_TS_SAMPLE_EDGE_8TH
#define KSZ9563_TS_SAMPLE8_TIME_NS_TS_SAMPLE_EDGE_8TH 0x40000000 |
Definition at line 1330 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_NS_TS_SAMPLE_TIME_NS_8TH
#define KSZ9563_TS_SAMPLE8_TIME_NS_TS_SAMPLE_TIME_NS_8TH 0x3FFFFFFF |
Definition at line 1331 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_PHASE
#define KSZ9563_TS_SAMPLE8_TIME_PHASE 0x05B0 |
Definition at line 254 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_8TH
#define KSZ9563_TS_SAMPLE8_TIME_PHASE_TS_SAMPLE_TIME_SUB_8NS_8TH 0x00000007 |
Definition at line 1337 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_S
#define KSZ9563_TS_SAMPLE8_TIME_S 0x05AC |
Definition at line 253 of file ksz9563_driver.h.
◆ KSZ9563_TS_SAMPLE8_TIME_S_TS_SAMPLE_TIME_S_8TH
#define KSZ9563_TS_SAMPLE8_TIME_S_TS_SAMPLE_TIME_S_8TH 0xFFFFFFFF |
Definition at line 1334 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL
#define KSZ9563_TS_STAT_CTRL 0x0550 |
Definition at line 230 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_CASCADE_MODE_ENB
#define KSZ9563_TS_STAT_CTRL_TS_CASCADE_MODE_ENB 0x00000001 |
Definition at line 1257 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_CASCADE_MODE_TAIL
#define KSZ9563_TS_STAT_CTRL_TS_CASCADE_MODE_TAIL 0x00000020 |
Definition at line 1255 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_DET_EVENT_CNT_OVERFLOW
#define KSZ9563_TS_STAT_CTRL_TS_DET_EVENT_CNT_OVERFLOW 0x00010000 |
Definition at line 1252 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_EVENT_DET_CNT
#define KSZ9563_TS_STAT_CTRL_TS_EVENT_DET_CNT 0x001E0000 |
Definition at line 1251 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_FALLING_EDGE_ENB
#define KSZ9563_TS_STAT_CTRL_TS_FALLING_EDGE_ENB 0x00000040 |
Definition at line 1254 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_RISING_EDGE_ENB
#define KSZ9563_TS_STAT_CTRL_TS_RISING_EDGE_ENB 0x00000080 |
Definition at line 1253 of file ksz9563_driver.h.
◆ KSZ9563_TS_STAT_CTRL_TS_UPSTREAM_CASCADE_MODE_SEL
#define KSZ9563_TS_STAT_CTRL_TS_UPSTREAM_CASCADE_MODE_SEL 0x00000002 |
Definition at line 1256 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL
#define KSZ9563_UNKNOWN_UNICAST_CTRL 0x0320 |
Definition at line 136 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL_FWD
#define KSZ9563_UNKNOWN_UNICAST_CTRL_FWD 0x80000000 |
Definition at line 942 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP
#define KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP 0x00000007 |
Definition at line 943 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_ALL
#define KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_ALL 0x00000007 |
Definition at line 947 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_PORT1
#define KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_PORT1 0x00000001 |
Definition at line 944 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_PORT2
#define KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_PORT2 0x00000002 |
Definition at line 945 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_PORT3
#define KSZ9563_UNKNOWN_UNICAST_CTRL_FWD_MAP_PORT3 0x00000004 |
Definition at line 946 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL 0x0328 |
Definition at line 138 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD 0x80000000 |
Definition at line 958 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP 0x00000007 |
Definition at line 959 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_ALL
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_ALL 0x00000007 |
Definition at line 963 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_PORT1
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_PORT1 0x00000001 |
Definition at line 960 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_PORT2
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_PORT2 0x00000002 |
Definition at line 961 of file ksz9563_driver.h.
◆ KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_PORT3
#define KSZ9563_UNKNOWN_VLAN_ID_CTRL_FWD_MAP_PORT3 0x00000004 |
Definition at line 962 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL
#define KSZ9563_UNKONWN_MULTICAST_CTRL 0x0324 |
Definition at line 137 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL_FWD
#define KSZ9563_UNKONWN_MULTICAST_CTRL_FWD 0x80000000 |
Definition at line 950 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP
#define KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP 0x00000007 |
Definition at line 951 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_ALL
#define KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_ALL 0x00000007 |
Definition at line 955 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_PORT1
#define KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_PORT1 0x00000001 |
Definition at line 952 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_PORT2
#define KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_PORT2 0x00000002 |
Definition at line 953 of file ksz9563_driver.h.
◆ KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_PORT3
#define KSZ9563_UNKONWN_MULTICAST_CTRL_FWD_MAP_PORT3 0x00000004 |
Definition at line 954 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL 0x040E |
Definition at line 192 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION 0x03 |
Definition at line 1048 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_CLEAR
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_CLEAR 0x03 |
Definition at line 1052 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_NOP
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_NOP 0x00 |
Definition at line 1049 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_READ
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_READ 0x02 |
Definition at line 1051 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_WRITE
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL_ACTION_WRITE 0x01 |
Definition at line 1050 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ACCESS_CTRL_START_FINISH
#define KSZ9563_VLAN_TABLE_ACCESS_CTRL_START_FINISH 0x80 |
Definition at line 1047 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY0
#define KSZ9563_VLAN_TABLE_ENTRY0 0x0400 |
Definition at line 188 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY0_FID
#define KSZ9563_VLAN_TABLE_ENTRY0_FID 0x0000007F |
Definition at line 1029 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY0_FORWARD_OPTION
#define KSZ9563_VLAN_TABLE_ENTRY0_FORWARD_OPTION 0x08000000 |
Definition at line 1026 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY0_MSTP_INDEX
#define KSZ9563_VLAN_TABLE_ENTRY0_MSTP_INDEX 0x00007000 |
Definition at line 1028 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY0_PRIORITY
#define KSZ9563_VLAN_TABLE_ENTRY0_PRIORITY 0x07000000 |
Definition at line 1027 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY0_VALID
#define KSZ9563_VLAN_TABLE_ENTRY0_VALID 0x80000000 |
Definition at line 1025 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY1
#define KSZ9563_VLAN_TABLE_ENTRY1 0x0404 |
Definition at line 189 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY1_PORT1_UNTAG
#define KSZ9563_VLAN_TABLE_ENTRY1_PORT1_UNTAG 0x00000001 |
Definition at line 1035 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY1_PORT2_UNTAG
#define KSZ9563_VLAN_TABLE_ENTRY1_PORT2_UNTAG 0x00000002 |
Definition at line 1034 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY1_PORT3_UNTAG
#define KSZ9563_VLAN_TABLE_ENTRY1_PORT3_UNTAG 0x00000004 |
Definition at line 1033 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY1_PORT_UNTAG
#define KSZ9563_VLAN_TABLE_ENTRY1_PORT_UNTAG 0x00000007 |
Definition at line 1032 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY2
#define KSZ9563_VLAN_TABLE_ENTRY2 0x0408 |
Definition at line 190 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY2_PORT1_FORWARD
#define KSZ9563_VLAN_TABLE_ENTRY2_PORT1_FORWARD 0x00000001 |
Definition at line 1041 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY2_PORT2_FORWARD
#define KSZ9563_VLAN_TABLE_ENTRY2_PORT2_FORWARD 0x00000002 |
Definition at line 1040 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY2_PORT3_FORWARD
#define KSZ9563_VLAN_TABLE_ENTRY2_PORT3_FORWARD 0x00000004 |
Definition at line 1039 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_ENTRY2_PORT_FORWARD
#define KSZ9563_VLAN_TABLE_ENTRY2_PORT_FORWARD 0x00000007 |
Definition at line 1038 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_INDEX
#define KSZ9563_VLAN_TABLE_INDEX 0x040C |
Definition at line 191 of file ksz9563_driver.h.
◆ KSZ9563_VLAN_TABLE_INDEX_VLAN_INDEX
#define KSZ9563_VLAN_TABLE_INDEX_VLAN_INDEX 0x0FFF |
Definition at line 1044 of file ksz9563_driver.h.
◆ KSZ9563_WRED_DIFFSERV_COLOR_MAPPING
#define KSZ9563_WRED_DIFFSERV_COLOR_MAPPING 0x0378 |
Definition at line 184 of file ksz9563_driver.h.
◆ KSZ9563_WRED_DIFFSERV_COLOR_MAPPING_GREEN
#define KSZ9563_WRED_DIFFSERV_COLOR_MAPPING_GREEN 0x03 |
Definition at line 1010 of file ksz9563_driver.h.
◆ KSZ9563_WRED_DIFFSERV_COLOR_MAPPING_RED
#define KSZ9563_WRED_DIFFSERV_COLOR_MAPPING_RED 0x30 |
Definition at line 1008 of file ksz9563_driver.h.
◆ KSZ9563_WRED_DIFFSERV_COLOR_MAPPING_YELLOW
#define KSZ9563_WRED_DIFFSERV_COLOR_MAPPING_YELLOW 0x0C |
Definition at line 1009 of file ksz9563_driver.h.
Function Documentation
◆ ksz9563AddStaticFdbEntry()
error_t ksz9563AddStaticFdbEntry | ( | NetInterface * | interface, |
const SwitchFdbEntry * | entry | ||
) |
Add a new entry to the static MAC table.
- Parameters
-
[in] interface Underlying network interface [in] entry Pointer to the forwarding database entry
- Returns
- Error code
Definition at line 990 of file ksz9563_driver.c.
◆ ksz9563DeleteStaticFdbEntry()
error_t ksz9563DeleteStaticFdbEntry | ( | NetInterface * | interface, |
const SwitchFdbEntry * | entry | ||
) |
Remove an entry from the static MAC table.
- Parameters
-
[in] interface Underlying network interface [in] entry Forwarding database entry to remove from the table
- Returns
- Error code
Definition at line 1112 of file ksz9563_driver.c.
◆ ksz9563DisableIrq()
void ksz9563DisableIrq | ( | NetInterface * | interface | ) |
Disable interrupts.
- Parameters
-
[in] interface Underlying network interface
Definition at line 322 of file ksz9563_driver.c.
◆ ksz9563DumpPhyReg()
void ksz9563DumpPhyReg | ( | NetInterface * | interface, |
uint8_t | port | ||
) |
Dump PHY registers for debugging purpose.
- Parameters
-
[in] interface Underlying network interface [in] port Port number
Definition at line 1595 of file ksz9563_driver.c.
◆ ksz9563EnableIgmpSnooping()
void ksz9563EnableIgmpSnooping | ( | NetInterface * | interface, |
bool_t | enable | ||
) |
Enable IGMP snooping.
- Parameters
-
[in] interface Underlying network interface [in] enable Enable or disable IGMP snooping
Definition at line 901 of file ksz9563_driver.c.
◆ ksz9563EnableIrq()
void ksz9563EnableIrq | ( | NetInterface * | interface | ) |
Enable interrupts.
- Parameters
-
[in] interface Underlying network interface
Definition at line 312 of file ksz9563_driver.c.
◆ ksz9563EnableMldSnooping()
void ksz9563EnableMldSnooping | ( | NetInterface * | interface, |
bool_t | enable | ||
) |
Enable MLD snooping.
- Parameters
-
[in] interface Underlying network interface [in] enable Enable or disable MLD snooping
Definition at line 931 of file ksz9563_driver.c.
◆ ksz9563EnableRsvdMcastTable()
void ksz9563EnableRsvdMcastTable | ( | NetInterface * | interface, |
bool_t | enable | ||
) |
Enable reserved multicast table.
- Parameters
-
[in] interface Underlying network interface [in] enable Enable or disable reserved group addresses
Definition at line 961 of file ksz9563_driver.c.
◆ ksz9563EventHandler()
void ksz9563EventHandler | ( | NetInterface * | interface | ) |
KSZ9563 event handler.
- Parameters
-
[in] interface Underlying network interface
Definition at line 332 of file ksz9563_driver.c.
◆ ksz9563FlushDynamicFdbTable()
void ksz9563FlushDynamicFdbTable | ( | NetInterface * | interface, |
uint8_t | port | ||
) |
Flush dynamic MAC table.
- Parameters
-
[in] interface Underlying network interface [in] port Port number
Definition at line 1433 of file ksz9563_driver.c.
◆ ksz9563FlushStaticFdbTable()
void ksz9563FlushStaticFdbTable | ( | NetInterface * | interface | ) |
Flush static MAC table.
- Parameters
-
[in] interface Underlying network interface
Definition at line 1289 of file ksz9563_driver.c.
◆ ksz9563GetDuplexMode()
NicDuplexMode ksz9563GetDuplexMode | ( | NetInterface * | interface, |
uint8_t | port | ||
) |
Get duplex mode.
- Parameters
-
[in] interface Underlying network interface [in] port Port number
- Returns
- Duplex mode
Definition at line 697 of file ksz9563_driver.c.
◆ ksz9563GetDynamicFdbEntry()
error_t ksz9563GetDynamicFdbEntry | ( | NetInterface * | interface, |
uint_t | index, | ||
SwitchFdbEntry * | entry | ||
) |
Read an entry from the dynamic MAC table.
- Parameters
-
[in] interface Underlying network interface [in] index Zero-based index of the entry to read [out] entry Pointer to the forwarding database entry
- Returns
- Error code
Definition at line 1338 of file ksz9563_driver.c.
◆ ksz9563GetLinkSpeed()
uint32_t ksz9563GetLinkSpeed | ( | NetInterface * | interface, |
uint8_t | port | ||
) |
Get link speed.
- Parameters
-
[in] interface Underlying network interface [in] port Port number
- Returns
- Link speed
Definition at line 602 of file ksz9563_driver.c.
◆ ksz9563GetLinkState()
bool_t ksz9563GetLinkState | ( | NetInterface * | interface, |
uint8_t | port | ||
) |
Get link state.
- Parameters
-
[in] interface Underlying network interface [in] port Port number
- Returns
- Link state
Definition at line 568 of file ksz9563_driver.c.
◆ ksz9563GetPortState()
SwitchPortState ksz9563GetPortState | ( | NetInterface * | interface, |
uint8_t | port | ||
) |
Get port state.
- Parameters
-
[in] interface Underlying network interface [in] port Port number
- Returns
- Port state
Definition at line 817 of file ksz9563_driver.c.
◆ ksz9563GetStaticFdbEntry()
error_t ksz9563GetStaticFdbEntry | ( | NetInterface * | interface, |
uint_t | index, | ||
SwitchFdbEntry * | entry | ||
) |
Read an entry from the static MAC table.
- Parameters
-
[in] interface Underlying network interface [in] index Zero-based index of the entry to read [out] entry Pointer to the forwarding database entry
- Returns
- Error code
Definition at line 1192 of file ksz9563_driver.c.
◆ ksz9563Init()
error_t ksz9563Init | ( | NetInterface * | interface | ) |
KSZ9563 Ethernet switch initialization.
- Parameters
-
[in] interface Underlying network interface
- Returns
- Error code
Definition at line 91 of file ksz9563_driver.c.
◆ ksz9563InitHook()
void ksz9563InitHook | ( | NetInterface * | interface | ) |
KSZ9563 custom configuration.
- Parameters
-
[in] interface Underlying network interface
Definition at line 232 of file ksz9563_driver.c.
◆ ksz9563ReadMmdReg()
uint16_t ksz9563ReadMmdReg | ( | NetInterface * | interface, |
uint8_t | port, | ||
uint8_t | devAddr, | ||
uint16_t | regAddr | ||
) |
Read MMD register.
- Parameters
-
[in] interface Underlying network interface [in] port Port number [in] devAddr Device address [in] regAddr Register address
- Returns
- Register value
Definition at line 1649 of file ksz9563_driver.c.
◆ ksz9563ReadPhyReg()
uint16_t ksz9563ReadPhyReg | ( | NetInterface * | interface, |
uint8_t | port, | ||
uint8_t | address | ||
) |
Read PHY register.
- Parameters
-
[in] interface Underlying network interface [in] port Port number [in] address PHY register address
- Returns
- Register value
Definition at line 1559 of file ksz9563_driver.c.
◆ ksz9563ReadSwitchReg16()
uint16_t ksz9563ReadSwitchReg16 | ( | NetInterface * | interface, |
uint16_t | address | ||
) |
Read switch register (16 bits)
- Parameters
-
[in] interface Underlying network interface [in] address Switch register address
- Returns
- Register value
Definition at line 1809 of file ksz9563_driver.c.
◆ ksz9563ReadSwitchReg32()
uint32_t ksz9563ReadSwitchReg32 | ( | NetInterface * | interface, |
uint16_t | address | ||
) |
Read switch register (32 bits)
- Parameters
-
[in] interface Underlying network interface [in] address Switch register address
- Returns
- Register value
Definition at line 1903 of file ksz9563_driver.c.
◆ ksz9563ReadSwitchReg8()
uint8_t ksz9563ReadSwitchReg8 | ( | NetInterface * | interface, |
uint16_t | address | ||
) |
Read switch register (8 bits)
- Parameters
-
[in] interface Underlying network interface [in] address Switch register address
- Returns
- Register value
Definition at line 1718 of file ksz9563_driver.c.
◆ ksz9563SetAgingTime()
void ksz9563SetAgingTime | ( | NetInterface * | interface, |
uint32_t | agingTime | ||
) |
Set aging time for dynamic filtering entries.
- Parameters
-
[in] interface Underlying network interface [in] agingTime Aging time, in seconds
Definition at line 880 of file ksz9563_driver.c.
◆ ksz9563SetPortState()
void ksz9563SetPortState | ( | NetInterface * | interface, |
uint8_t | port, | ||
SwitchPortState | state | ||
) |
Set port state.
- Parameters
-
[in] interface Underlying network interface [in] port Port number [in] state Port state
Definition at line 761 of file ksz9563_driver.c.
◆ ksz9563SetUnknownMcastFwdPorts()
void ksz9563SetUnknownMcastFwdPorts | ( | NetInterface * | interface, |
bool_t | enable, | ||
uint32_t | forwardPorts | ||
) |
Set forward ports for unknown multicast packets.
- Parameters
-
[in] interface Underlying network interface [in] enable Enable or disable forwarding of unknown multicast packets [in] forwardPorts Port map
Definition at line 1480 of file ksz9563_driver.c.
◆ ksz9563TagFrame()
error_t ksz9563TagFrame | ( | NetInterface * | interface, |
NetBuffer * | buffer, | ||
size_t * | offset, | ||
NetTxAncillary * | ancillary | ||
) |
Add tail tag to Ethernet frame.
- Parameters
-
[in] interface Underlying network interface [in] buffer Multi-part buffer containing the payload [in,out] offset Offset to the first payload byte [in] ancillary Additional options passed to the stack along with the packet
- Returns
- Error code
Definition at line 457 of file ksz9563_driver.c.
◆ ksz9563Tick()
void ksz9563Tick | ( | NetInterface * | interface | ) |
KSZ9563 timer handler.
- Parameters
-
[in] interface Underlying network interface
Definition at line 242 of file ksz9563_driver.c.
◆ ksz9563UntagFrame()
error_t ksz9563UntagFrame | ( | NetInterface * | interface, |
uint8_t ** | frame, | ||
size_t * | length, | ||
NetRxAncillary * | ancillary | ||
) |
Decode tail tag from incoming Ethernet frame.
- Parameters
-
[in] interface Underlying network interface [in,out] frame Pointer to the received Ethernet frame [in,out] length Length of the frame, in bytes [in,out] ancillary Additional options passed to the stack along with the packet
- Returns
- Error code
Definition at line 516 of file ksz9563_driver.c.
◆ ksz9563WriteMmdReg()
void ksz9563WriteMmdReg | ( | NetInterface * | interface, |
uint8_t | port, | ||
uint8_t | devAddr, | ||
uint16_t | regAddr, | ||
uint16_t | data | ||
) |
Write MMD register.
- Parameters
-
[in] interface Underlying network interface [in] port Port number [in] devAddr Device address [in] regAddr Register address [in] data Register value
Definition at line 1621 of file ksz9563_driver.c.
◆ ksz9563WritePhyReg()
void ksz9563WritePhyReg | ( | NetInterface * | interface, |
uint8_t | port, | ||
uint8_t | address, | ||
uint16_t | data | ||
) |
Write PHY register.
- Parameters
-
[in] interface Underlying network interface [in] port Port number [in] address PHY register address [in] data Register value
Definition at line 1525 of file ksz9563_driver.c.
◆ ksz9563WriteSwitchReg16()
void ksz9563WriteSwitchReg16 | ( | NetInterface * | interface, |
uint16_t | address, | ||
uint16_t | data | ||
) |
Write switch register (16 bits)
- Parameters
-
[in] interface Underlying network interface [in] address Switch register address [in] data Register value
Definition at line 1765 of file ksz9563_driver.c.
◆ ksz9563WriteSwitchReg32()
void ksz9563WriteSwitchReg32 | ( | NetInterface * | interface, |
uint16_t | address, | ||
uint32_t | data | ||
) |
Write switch register (32 bits)
- Parameters
-
[in] interface Underlying network interface [in] address Switch register address [in] data Register value
Definition at line 1857 of file ksz9563_driver.c.
◆ ksz9563WriteSwitchReg8()
void ksz9563WriteSwitchReg8 | ( | NetInterface * | interface, |
uint16_t | address, | ||
uint8_t | data | ||
) |
Write switch register (8 bits)
- Parameters
-
[in] interface Underlying network interface [in] address Switch register address [in] data Register value
Definition at line 1675 of file ksz9563_driver.c.
Variable Documentation
◆ ksz9563SwitchDriver
|
extern |
KSZ9563 Ethernet switch driver.
Definition at line 45 of file ksz9563_driver.c.