NOTICE: The Processors Wiki will End-of-Life on January 15, 2021. It is recommended to download any files or other content you may need that are hosted on processors.wiki.ti.com. The site is now set to read only.
TI81XX PSP ETHERNET Switch User Guide
Important This document is applicable only for TI814X and TI813X
Contents
- 1 Introduction
- 2 IEEE 1588/802.1AS PTP Support
- 3 Switch Mode of Operation
- 3.1 Introduction
- 3.2 Configuring Kernel with VLAN Support
- 3.3 Switch Config Commands
- 3.3.1 CONFIG_SWITCH_ADD_MULTICAST
- 3.3.2 CONFIG_SWITCH_ADD_UNICAST
- 3.3.3 CONFIG_SWITCH_ADD_OUI
- 3.3.4 CONFIG_SWITCH_FIND_ADDR
- 3.3.5 CONFIG_SWITCH_DEL_MULTICAST
- 3.3.6 CONFIG_SWITCH_DEL_UNICAST
- 3.3.7 CONFIG_SWITCH_ADD_VLAN
- 3.3.8 CONFIG_SWITCH_FIND_VLAN
- 3.3.9 CONFIG_SWITCH_DEL_VLAN
- 3.3.10 CONFIG_SWITCH_SET_PORT_VLAN_CONFIG
- 3.3.11 CONFIG_SWITCH_TIMEOUT
- 3.3.12 CONFIG_SWITCH_DUMP
- 3.3.13 CONFIG_SWITCH_SET_FLOW_CONTROL
- 3.3.14 CONFIG_SWITCH_SET_PRIORITY_MAPPING
- 3.3.15 CONFIG_SWITCH_PORT_STATISTICS_ENABLE
- 3.3.16 CONFIG_SWITCH_CONFIG_DUMP
- 3.3.17 CONFIG_SWITCH_RATELIMIT
- 3.3.18 CONFIG_SWITCH_VID_INGRESS_CHECK
- 3.3.19 CONFIG_SWITCH_ADD_UNKNOWN_VLAN_INFO
- 3.3.20 CONFIG_SWITCH_802_1
- 3.3.21 CONFIG_SWITCH_MACAUTH
- 3.3.22 CONFIG_SWITCH_SET_PORT_CONFIG
- 3.3.23 CONFIG_SWITCH_GET_PORT_CONFIG
- 3.3.24 CONFIG_SWITCH_PORT_STATE
- 3.3.25 CONFIG_SWITCH_RESET
- 4 Dual Standalone EMAC mode
Introduction[edit]
This user guide provides an overview of the Common Platform SWitch (CPSW) driver for the TI814X and TI813X devices. The CPSW or Ethernet Switch driver follows the standard Linux network interface architecture.
The driver supports the following features:
- 10/100/1000 Mbps mode of operation.
- Auto negotiation.
- Support for multicast and broadcast frames.
- Linux NAPI support
- Second switch port (from DEV_DM814XPSP_04.01.00.06 release)
- IEEE 1588/802.1AS PTP Support (Supported from DEV_DM814XPSP_04.01.00.06 release) (Supported for TI814X)
- VLAN (Subscription common for all ports) (Supported from DEV_DM814XPSP_04.01.00.06 release)
- Ethertool (Supports only Slave 0) (Supported from DEV_DM814XPSP_04.01.00.06 release)
- Switch mode of operation (Supported from DEV_DM814XPSP_04.01.00.07 release)
- Dual Standalone EMAC mode (Supported from DEV_TI81XXPSP_04.04.00.01 release)
IEEE 1588/802.1AS PTP Support[edit]
Introduction[edit]
Precise time information is especially important for distributed systems. With the Precision Time Protocol (PTP) described in IEEE 1588/802.1AS, it is possible to synchronize distributed clocks with an accuracy of less than 1 microsecond via Ethernet networks for the very first time. The PTP protocol relies on establishing the time difference between connected components based on timestamped packets being exchanged between the master and slave. For better accuracy, the time-stamp needs to be generated as close to the wire(in HW) as possible. The PTP spec also provides guidelines about synchronization of clocks once the difference is calculated based on the messages exchanged.
For synchronization of the clocks we need a mechanism for
- Time-stamp generation for PTP messages - as close to the wire for better accuracy
- Mechanism for modifying the local clock once the difference in time is computed
For best possible results, we will need HW assist for both of the steps mentioned above. Relatively simpler systems can rely on SW only implementation where the timestamps on PTP messages can be generated in SW(by the driver, when en-queuing message with HW) based on kernel timer source(gettimeofday) and also use setttimeofday() to modify the local clock rate periodically.
Support for IEEE 802.1AS[edit]
The DM814X and DM813X series of devices has support for the IEEE 802.1AS standard. This is a profile of IEEE 1588-2008 and runs on Layer 2 only. This support is implemented in a new subsystem called the Common Platform Time Stamp (CPTS).
Note: Note IEEE 1588 on Layer 3 is not supported.
Note: Note 802.1AS does not currently work with an AVB switch (as of March-2012).
Software Time stamping[edit]
Software only implementation will rely on the kernel timer for both time-stamp generation and gettimeofday/settimeofday() calls for clock synchronization. Due to variable latency associated with handled this in Software, this will not yield the best results but is the ideal starting point to put together a working system that can be pruned later(with addition of Hardware timestamps and clock control APIs).
Salient features in this mode are
- Local clock source is got through the clock_gettime with the CLOCK_REALTIME and the clock rate set is done using the settimeofday api for resetting the clock to sync to the master clock.
- Time stamping of the packets are done through the socket option SO_TIMESTAMP through software kernel timer.
Approach[edit]
- Download PTPdv2 source from the source forge
- PC setup : build for x86 target, no modifications required. Will use SO_TIMESTAMP socket option for generating timestamps in software and use local REALTIME clock source.
- DM814X EVM setup : needs cross compilation for arm architecture
- PTPdv2 mods: Applied patch to use new POSIX clock API, PTP hardware clock framework and to use hardware SO_TIMESTAMPING interface for time stamp generation.
- Kernel modification : Added a syscall "sys_clock_adjtime" for the arm architecture.
- Test with ptpdv2 in master mode on PC and slave mode on DM814X EVM
- Measure time difference and re-sync time and accuracy after re-sync operation (results summarized)
Hardware Time stamping[edit]
Fully h/w supported implementation shall exploit h/w assist for timestamp generation and special capabilities exported by the h/w for clock synchronization.
- Time stamping of the packets are done through the hardware by the SO_TIMESTAMPING socket option.
- The local hardware clock source control is achieved by implementing a new driver that fits into the PTP HW clock infrastructure added in Linux.
- Additional functionality can be provided through the custom ioctl calls exported by the clock driver module.
- Modifying the PTPdv2 source to support 802.1AS IEEE 1588v2 packets.
Capabilities supported in Hardware
[edit]
- 32 Bit Nano Clock is supported, Above 32 bit host needs to maintain in software.
- Generate time-stamp for 802.1AS packets with configurable event type messages and VLAN type.
- 4 hardware triggered time-stamp events to register a hardware event occurance.
Approach[edit]
- Choose appropriate clock as cpts ref clock in UBoot.
- Modified the CPSW driver to enable CPTS module and to generate the H/W timestamp for 802.1AS packets.
- Implemented the PTP class driver for Enabling the CPTS as Hardware clock source.
- Implemented the Timekeeping module to hold the upper 32 bit of the 64 bit time in Software
- Implemented the software queue to hold the timestamps and deliver it to the DMA Handlers.
- Implemented ioctl call to support start and stop hw time stamping.
- Implemented set_multicast_list receiving LLDP multicast packets.
- Implemented the adjust clock frequency to change the CPTS ref clock
- Input ref clock = CLCKINP (20Mhz)
- Target rate = CLKOUT
- DCO clock freq = DCOCLK
- multiplier = M, pre-divider = N, post-divider= M2, fract_mult = Fm
- CLKOUT = CLKINP*(M+Fm)/(N+1)*M2
- DCOCLK = CLKOUT*M2
- REFCLK = CLKINP/(N+1)
- Modified the PTPd2 source from source forge to support 802.1AS protocol by the reference from the source from code.google.com as it supports 802.1AS but doesn't support POSIX hardware clock.
- DM814X EVM setup : needs cross compilation for arm architecture
- Test with ptpdv2 in master mode on one DM814X EVM and slave mode on another DM814X EVM
Source code[edit]
EVM
- Kernel : http://arago-project.org/git/projects/linux-omap3.git
- PTPd : http://sourceforge.net/projects/ptpd/
Setup and Testing[edit]
Initial testing (Software time stamping) has been carried with TI814X EVM(will act as slave,ordinary clock) connected to Linux PC(acting as master). PTPdv2 is used at both ends with appropriate command switches as described in the "TestResults" section.
Hardware time stamping testing is carried out with two TI814X EVMs, One acting as master and another as slave connected to the same Switch.
Compilation
[edit]
Linux PC (Software Time stamping only)[edit]
Host PC Configuration
- Ubuntu 10.04.1
- tar xzvf ptpdv2-google.tar.gz
- cd ptpdv2-google
- make
TI814X/TI813X EVM[edit]
Kernel
- Defconfig
- TI814X - make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- ti8148_evm_defconfig
- TI813X - make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- dm385_evm_defconfig
- make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- menuconfig
- Select PPS Support - Device Drivers ---> PPS Support ---> <*> PPS Support
- Select PTP Clock Support - Device Drivers ---> PTP Clock Support ---> <*> PTP Clock Support
- Select TI CPTS PTP Clock - Device Drivers ---> PTP Clock Support ---> <*> TI CPTS as PTP clock
- make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- uImage
- make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- headers_install
Constraint
- CPTS ref clock of 250MHz is derived from PLL_AUDIO_OUT ADPLL, so make sure that this clock is not used by any other Subsystem or choose an appropriate clock source from the RMII_REFCLK_SRC register.
- Hardware time-stamping is done only for the Layer 2 Multicast or Unicast PTP packets and not on IP based PTP packets.
PTPdv2
- tar xzvf ptpdv2.tar.gz
- cd ptpdv2/src
- make CC=arm-arago-linux-gnueabi-gcc KBUILD_OUTPUT=’kernel directory’
Test Results[edit]
Software Time stamping[edit]
Client with reset clock[edit]
Execution steps
- On server side: sudo ./ptpv2d -c -d -t -y 2 -2 -8
- On client side : ./ptpd2 -c -e -g
- PTP Log during clock reset:
- PTP Log after a clock reset:
In summary the clocks can be synchronized with 100usecs accuracy. This should be much better if either/both ends start using HW generated timestamps for PTP messages and this will be taken up as the immediate next step.
Client without reset clock[edit]
Execution steps
- On server side: sudo ./ptpv2d -c -d -t -y 2 -2 -8
- On client side : ./ptpd2 -c -e -g -x
- PTP Log without clock reset
- PTP Log without clock reset
Hardware Time stamping[edit]
Execution steps
- On server side: ./ptpd2 -ce
- On client side: ./ptpd2 -ceg
Board Details[edit]
- PTP Server - DM814X 1.0 EVM
- PTP Client - DM814X 2.1 EVM
PTP Test Setup[edit]
PTP Logs[edit]
PTP Log Counter/Frequency Drift[edit]
PTP Log Cumulative Counter Drift[edit]
Procedure for Implementing Custom Clock using CPTS[edit]
TI Implementation[edit]
- Select PLL_AUDIO_OUT as CPTS ref clock in RMII_REFCLK_SRC in UBoot.
- In ptp_cpts_init() get the PLL_AUDIO_OUT PLL clock data structure from clock framework.
- In ptp_cpts_adjfreq()
- Convert the ppb (No of parts per billion to be drifted from current clock frequency) to frequency to set to the clock.
f' = f + f * ppb/1000000000 - Set f' to the PLL_AUDIO_OUT by cpts_ref_clk->set_rate()
- Convert the ppb (No of parts per billion to be drifted from current clock frequency) to frequency to set to the clock.
Customer Implementation[edit]
- Select PLL_AUDIO_OUT as CPTS ref clock in Rgmii_refclk_src.Cpts_rft_clk in UBoot.
- Make the PLL_AUDIO_OUT to be in Bypass Mode, so that the Clock from the OSC1 is fed directly to the CPTS ref clock input.
- In ptp_cpts_init() initialize the VCXO clock data structure to cpts_clock data structure.
- In ptp_cpts_adjfreq()
- Convert the ppb (No of parts per billion to be drifted from current clock frequency) to the VCXO value where it provides 1 ppb precision.
- Set the VCXO value, so that the desired frequency from the below formula is generated by OSC1.
f' = f + f * ppb/1000000000
Switch Mode of Operation[edit]
Introduction[edit]
The DM814X Ethernet Switch can be configured in various different combination of Ethernet Packet forwarding and blocking. There is no such standard interface in Linux to configure a switch. This user guide provides an interface to configure the switch using Socket IOCTL through SIOCDEVPRIVATE command.
Configuring Kernel with VLAN Support[edit]
Userspace binary formats --->
Power management options --->
[*] Networking support --->
Device Drivers --->
File systems --->
Kernel hacking --->
--- Networking support
Networking options --->
[ ] Amateur Radio support --->
<*> CAN bus subsystem support --->
< > IrDA (infrared) subsystem support --->
< > Bluetooth subsystem support --->
< > RxRPC session sockets
< > The RDS Protocol (EXPERIMENTAL) < > The TIPC Protocol (EXPERIMENTAL) ---> < > Asynchronous Transfer Mode (ATM) < > Layer Two Tunneling Protocol (L2TP) ---> < > 802.1d Ethernet Bridging [ ] Distributed Switch Architecture support ---> <*> 802.1Q VLAN Support [*] GVRP (GARP VLAN Registration Protocol) support < > DECnet Support < > ANSI/IEEE 802.2 LLC type 2 Support < > The IPX protocol
Switch Config Commands[edit]
Following is sample code for configuring the switch.
<syntaxhighlight lang="c">
- include <stdio.h>
...
- include <linux/net_switch_config.h>
int main(void) { struct net_switch_config cmd_struct; struct ifreq ifr; int sockfd; strncpy(ifr.ifr_name, "eth0", IFNAMSIZ); ifr.ifr_data = (char*)&cmd_struct; if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { printf("Can't open the socket\n"); return -1; } memset(&cmd_struct, 0, sizeof(struct net_switch_config));
...//initialise cmd_struct with switch commands
if (ioctl(sockfd, SIOCDEVPRIVATE, &ifr) < 0) { printf("Command failed\n"); close(sockfd); return -1; } printf("command success\n"); close(sockfd); return 0; } </syntaxhighlight>
CONFIG_SWITCH_ADD_MULTICAST[edit]
CONFIG_SWITCH_ADD_MULTICAST is used to add a LLDP Multicast address and forward the multicast packet to the subscribed ports. If VLAN ID is greater than zero then VLAN LLDP/Multicast is added.
cmd_struct.cmd = CONFIG_SWITCH_ADD_MULTICAST
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.addr | LLDP/Multicast Address | MAC Address |
cmd_struct.cmd_data.switchcmd.mem_port | Member port Bit 0 – Host port/Port 0 |
0 – 7 |
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
cmd_struct.cmd_data.switchcmd.flag | Super | 0/1 |
cmd_struct.cmd_data.switchcmd.untag_port | Multicast forward state | 0 – 3 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_ADD_UNICAST[edit]
CONFIG_SWITCH_ADD_UNICAST is used to add a Unicast address and forward the unicast packet to that port. If VLAN ID is greater than zero then VLAN Unicast is added.
cmd_struct.cmd = CONFIG_SWITCH_ADD_UNICAST
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.addr | Unicast Address | MAC Address |
cmd_struct.cmd_data.switchcmd.mem_port | Port Number | 0 – 2 |
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
cmd_struct.cmd_data.switchcmd.blocked | Blocked | 0/1 |
cmd_struct.cmd_data.switchcmd.secure | Secure Bit | 0/1 |
cmd_struct.cmd_data.switchcmd.ageable | Ageable | 0/1 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_ADD_OUI[edit]
CONFIG_SWITCH_ADD_OUI is used to add a OUI address.
cmd_struct.cmd = CONFIG_SWITCH_ADD_OUI
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.addr | Unicast Address | MAC Address |
cmd_struct.cmd_data.switchcmd.mem_port | Member port Bit 0 – Host port/Port 0 |
0 – 7 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_FIND_ADDR[edit]
CONFIG_SWITCH_FIND_ADDR is used to find a address with or without VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_FIND_ADDR
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.addr | Unicast Address | MAC Address |
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
Result
ioctl call returns success or failure.
On success cmd_struct.ret_type will hold the ALE table index
CONFIG_SWITCH_DEL_MULTICAST[edit]
CONFIG_SWITCH_DEL_MULTICAST is used to Delete a LLDP/Multicast address with or without VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_DEL_MULTICAST
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.addr | Unicast Address | MAC Address |
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
cmd_struct.cmd_data.switchcmd.mem_port | Member port Bit 0 – Host port/Port 0 |
0 – 7 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_DEL_UNICAST[edit]
CONFIG_SWITCH_DEL_UNICAST is used to Delete a Unicast address with or without VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_DEL_UNICAST
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.addr | Unicast Address | MAC Address |
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_ADD_VLAN[edit]
CONFIG_SWITCH_ADD_VLAN is used to add VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_ADD_VLAN
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
cmd_struct.cmd_data.switchcmd.mem_port | Member port Bit 0 – Host port/Port 0 |
0 – 7 |
cmd_struct.cmd_data.switchcmd.untag_port | Untagged Egress port mask Bit 0 – Host port/Port 0 |
0 – 7 |
cmd_struct.cmd_data.switchcmd.reg_multi | Registered Multicast flood port mask Bit 0 – Host port/Port 0 |
0 – 7 |
cmd_struct.cmd_data.switchcmd.unreg_multi | Unknown Multicast flood port mask Bit 0 – Host port/Port 0 |
0 – 7 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_FIND_VLAN[edit]
CONFIG_SWITCH_ADD_VLAN is used to add VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_ADD_VLAN
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
Result
ioctl call returns success or failure.
On success cmd_struct.ret_type will hold the ALE table index
CONFIG_SWITCH_DEL_VLAN[edit]
CONFIG_SWITCH_DEL_VLAN is used to delete VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_DEL_VLAN
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_SET_PORT_VLAN_CONFIG[edit]
CONFIG_SWITCH_SET_PORT_VLAN_CONFIG is used to set port VLAN ID.
cmd_struct.cmd = CONFIG_SWITCH_SET_PORT_VLAN_CONFIG
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.port | Port number | 0 - 2 |
cmd_struct.cmd_data.switchcmd.vid | VLAN ID | 0 – 4095 |
cmd_struct.cmd_data.switchcmd.prio_port | VLAN Priority | 0 – 7 |
cmd_struct.cmd_data.switchcmd.CFI_port | VLAN CFI | 0/1 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_TIMEOUT[edit]
CONFIG_SWITCH_TIMEOUT is used to set ALE aging timeout.
cmd_struct.cmd = CONFIG_SWITCH_TIMEOUT
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.ale_timeout | ALE age out time | Timeout in Milli second |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_DUMP[edit]
CONFIG_SWITCH_DUMP is used to dump ALE table.
cmd_struct.cmd = CONFIG_SWITCH_DUMP
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.switchcmd.aledump | ALE index | 0 - 1023 |
Result
ioctl call returns success or failure.
On success "cmd_struct.cmd_data.buf" holds ALE dump text.
CONFIG_SWITCH_SET_FLOW_CONTROL[edit]
CONFIG_SWITCH_SET_FLOW_CONTROL is used to set flow control of the ports.
cmd_struct.cmd = CONFIG_SWITCH_SET_FLOW_CONTROL
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port Mask Bit 0 – Host port/Port 0 |
0 - 7 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_SET_PRIORITY_MAPPING[edit]
CONFIG_SWITCH_SET_PRIORITY_MAPPING is used to set priority mapping of the ports.
cmd_struct.cmd = CONFIG_SWITCH_SET_PRIORITY_MAPPING
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port Numnber | 0 - 2 |
cmd_struct.cmd_data.priocmd.prio_rx | Receive priority | 0 - 7 |
cmd_struct.cmd_data.priocmd.prio_tx | Transmit priority | 0 - 7 |
cmd_struct.cmd_data.priocmd.prio_switch | Switch priority | 0 - 3 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_PORT_STATISTICS_ENABLE[edit]
CONFIG_SWITCH_PORT_STATISTICS_ENABLE is used to enable hardware statics of the ports.
cmd_struct.cmd = CONFIG_SWITCH_PORT_STATISTICS_ENABLE
Parameter | Description | Range |
---|---|---|
switch_config.cmd_data.switchcmd.mem_port | Port Mask Bit 0 – Host port/Port 0 |
0 - 7 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_CONFIG_DUMP[edit]
CONFIG_SWITCH_CONFIG_DUMP is used to dump the switch configuration.
cmd_struct.cmd = CONFIG_SWITCH_CONFIG_DUMP
Parameter | Description | Range |
---|---|---|
None | - | - |
Result
ioctl call returns success or failure.
On success "cmd_struct.cmd_data.buf" holds Switch dump text.
CONFIG_SWITCH_RATELIMIT[edit]
CONFIG_SWITCH_RATELIMIT is used to enable/disable rate limit of the ports.
cmd_struct.cmd = CONFIG_SWITCH_RATELIMIT
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.enable | Enable/Disable | Enable - 1 Disable - 0 |
cmd_struct.cmd_data.portcmd.direction | Transmit/Receive | Transmit - 0 Receive - 1 |
cmd_struct.cmd_data.portcmd.port | Port number | 0 - 2 |
cmd_struct.cmd_data.portcmd.addr_type | Broadcast/Multicast | ADDR_TYPE_BROADCAST / ADDR_TYPE_MULTICAST |
cmd_struct.cmd_data.portcmd.limit | No of Packet | 0 - 255 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_VID_INGRESS_CHECK[edit]
CONFIG_SWITCH_VID_INGRESS_CHECK is used to set VLAN Ingress Check.
cmd_struct.cmd = CONFIG_SWITCH_VID_INGRESS_CHECK
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port number | 0 - 2 |
cmd_struct.cmd_data.portcmd.vlan_ingress_check | Ingress enable/disable | Enable - 1 Disable - 0 |
cmd_struct.cmd_data.portcmd.drop_untagged | Drop untagged enable/disabe | Enable - 1 Disable - 0 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_ADD_UNKNOWN_VLAN_INFO[edit]
CONFIG_SWITCH_ADD_UNKNOWN_VLAN_INFO is used to set unknown VLAN Info.
cmd_struct.cmd = CONFIG_SWITCH_ADD_UNKNOWN_VLAN_INFO
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port mask Bit 0 – Host port/Port 0 |
0 - 7 |
cmd_struct.cmd_data.portcmd.reg_multi_port_mask | Registered Multicast flood port mask Bit 0 – Host port/Port 0 |
0 - 7 |
cmd_struct.cmd_data.portcmd.unknown_reg_multi_port_mask | Unknown Multicast flood port mask Bit 0 – Host port/Port 0 |
0 - 7 |
cmd_struct.cmd_data.portcmd.unknown_vlan_member | Unknown Vlan Member port mask Bit 0 – Host port/Port 0 |
0 - 7 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_802_1[edit]
CONFIG_SWITCH_802_1 is used to enable 802.1 packet forwarding.
cmd_struct.cmd = CONFIG_SWITCH_802_1
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.enable | Drop untagged enable/disabe | Enable - 1 Disable - 0 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_MACAUTH[edit]
CONFIG_SWITCH_MACAUTH is used to enable 802.1 packet forwarding.
cmd_struct.cmd = CONFIG_SWITCH_MACAUTH
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.enable | Drop untagged enable/disabe | Enable - 1 Disable - 0 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_SET_PORT_CONFIG[edit]
CONFIG_SWITCH_SET_PORT_CONFIG is used to set Phy Config.
cmd_struct.cmd = CONFIG_SWITCH_SET_PORT_CONFIG
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port number | 0 - 2 |
cmd_struct.cmd_data.portcmd.limit | Speed | 0 - Auto/ 10/100/1000 |
cmd_struct.cmd_data.portcmd.direction | Duplexity | Full - 1 Half - 0 |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_GET_PORT_CONFIG[edit]
CONFIG_SWITCH_GET_PORT_CONFIG is used to get Phy Config.
cmd_struct.cmd = CONFIG_SWITCH_GET_PORT_CONFIG
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port number | 0 - 2 |
Result
ioctl call returns success or failure.
On success "cmd_struct.cmd_data.portcmd.limit" holds port speed (0 - auto/10/100/1000) and "cmd_struct.cmd_data.portcmd.direction" holds duplexity (1 - Full Duplex / 0 - Half Duplex)
CONFIG_SWITCH_PORT_STATE[edit]
CONFIG_SWITCH_PORT_STATE is used to set port status.
cmd_struct.cmd = CONFIG_SWITCH_PORT_STATE
Parameter | Description | Range |
---|---|---|
cmd_struct.cmd_data.portcmd.port | Port number | 0 - 2 |
cmd_struct.cmd_data.portcmd.port_state | Port state | PORT_STATE_DISABLED/ PORT_STATE_BLOCKED/ PORT_STATE_LEARN/ PORT_STATE_FORWARD |
Result
ioctl call returns success or failure.
CONFIG_SWITCH_RESET[edit]
CONFIG_SWITCH_RESET is used to reset the switch.
cmd_struct.cmd = CONFIG_SWITCH_RESET
Parameter | Description | Range |
---|---|---|
None | - | - |
Result
ioctl call returns success or failure.
Dual Standalone EMAC mode[edit]
Introduction[edit]
This section provides the user guide for Dual Emac mode implementation. The Dual EMAC is implemented by segregating the two down stream ports using port VLAN ids.
Approach[edit]
Two network interface are registered in CPSW probe. CPSW and ALE are always operated in VLAN aware mode as VLAN is used to segregate the two down stream ports to avoid switching functionality. The below configuration is done to achieve Dual EMAC in CPSW switch.
- CPSW and ALE are VLAN aware enabled.
- VLAN id 1 and 2 is added to respective port VLAN entry of the down stream ports
- VLAN id 1 and 2 are added to ALE entry with Host port P0 with P1 and P2 as members respectively
- Unicast and broadcast entries of both the interface is added to ALE with respective VLAN id entry
Packet indentification and routing
On receiving the packet, from CPDMA descriptor status the port number is identified from the where the packet is identified and the packet is delivered to the particular ethernet interface. For transmission to_port field is used, if it is from first ethernet interface then to_port is loaded with the value 1 and for the second interface to_port is loaded with 2 so that ALE is bypassed and send to that particular port.
Common for both interface
Below are the common parameters for both the interface.
- Interrupt source is common for both eth interfaces
- If eth0 is up, then eth0 napi is used. if eth0 interface is down then eth1 napi is used.
- CPSW and ALE will be in VLAN aware mode irrespective of enabling of 802.1Q module in Linux network stack for adding port VLAN.
- Interrupt pacing is common for both interfaces
- Hardware statistics is common for all the ports
- Switch config will not be available in dual emac interface mode
Constrains[edit]
The following are the constrains for Dual Emac mode implementation
- VLAN id 2 and 3 are reserved for EMAC 0 and 1 respectively for port segregation
- While adding VLAN id to the eth interfaces, same VLAN id should not be added in both interfaces which will lead to VLAN forwarding and act as switch
- While adding Multicast MAC ids to the eth interfaces, same Multicast MAC should not be added in both interfaces which will lead to Multicast forwarding and act as switch
- Sysfs ALE table and control interfaces are available in eth0 interface only
- Manual ip for both interface is not supported from Linux kernel arguments
- Both the interfaces should not be connected to the same subnet unless only configuring bridging, and not doing IP routing, then you can configure the two interfaces on the same subnet.
Compiling kernel[edit]
Userspace binary formats --->
Power management options --->
[*] Networking support --->
Device Drivers --->
File systems --->
Kernel hacking --->
Generic Driver Options --->
< > Connector - unified userspace <-> kernelspace linker --->
<*> Memory Technology Device (MTD) support --->
< > Parallel port support --->
[*] Block devices --->
[*] Misc devices --->
< > ATA/ATAPI/MFM/RLL support (DEPRECATED) --->
SCSI device support --->
<*> Serial ATA and Parallel ATA drivers --->
[ ] Multiple devices driver support (RAID and LVM) --->
[ ] Fusion MPT device support --->
IEEE 1394 (FireWire) support --->
< > I2O device support --->
[*] Network device support --->
[ ] ISDN support --->
< > Telephony support --->
Input device support --->
--- Network device support
< > Dummy net driver support
< > Bonding driver support
< > MAC-VLAN support (EXPERIMENTAL)
< > EQL (serial line load balancing) support
< > Universal TUN/TAP device driver support
< > Virtual ethernet pair device
< > ARCnet support --->
-*- Generic Media Independent Interface device support
-*- PHY Device support and infrastructure --->
[ ] Ethernet (10 or 100Mbit) --->
[*] Ethernet (1000 Mbit) --->
[ ] Ethernet (10000 Mbit) --->
< > Token Ring driver support --->
[ ] Wireless LAN --->
--- Ethernet (1000 Mbit)
< > Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support
< > DL2000/TC902x-based Gigabit Ethernet support
-*- TI DaVinci MDIO Support
-*- TI DaVinci CPDMA Support
<*> TI CPSW Switch Support
[*] TI CPSW Switch as Dual EMAC
< > Intel(R) PRO/1000 Gigabit Ethernet support
< > Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support
< > IP1000 Gigabit Ethernet support
Bringing Up interfaces[edit]
Eth0 will be up by-default. Eth1 interface has to be brought up manually using either of the folloing command or through init scripts
DHCP[edit]
ifup eth1
Manual IP[edit]
ifconfig eth1 <ip> netmask <mask> up