Programming Guide

This section provides the details of the programming requirements to operate the Ethernet FMC Max hardware and customise functionality.

Required PHY settings

The following PHY settings are required for correct operation of the Ethernet FMC Max. Most of them are set to the appropriate value by hardware straps or by software in our reference designs. The information in this section is provided for reference to users that are not using our reference designs and are instead developing their own custom designs and software.

SettingValueDefault valueRegister addressBit index
SGMII enable1 (enabled)1 (enabled)0x001011
SGMII
auto-negotiation
enable
1 (enabled)1 (enabled)0x00147
SGMII configuration0 (4-wire mode)0 (4-wire mode)0x00D314
Mirror mode1 (enabled)Rev-A: 0 (disabled)
Rev-B and up: 1 (enabled)
0x00310

Mirror Mode

For correct operation of the Ethernet FMC Max, the mirror mode (bit 0, register 0x0031) must be enabled. On the Rev-A boards, this is not enabled by the strap pins and must be enabled by software.

The example code below demonstrates enabling Mirror mode for port 0 (PHY address 0x01) by making MDIO writes to register 0x0031 in the extended address space. The functions used are defined in the extended address space section. Note that similar code is already integrated into our example designs and is included here as a reference for users that are developing custom designs and software.

u16 reg;
u32 phy_addr = 0x01;
// Read the current value of the register
XAxiEthernet_PhyReadExtended(axieth_inst,phy_addr,0x0031,&reg);
// Enable Mirror mode
reg |= 0x0001;
// Write the new value to the register
XAxiEthernet_PhyWriteExtended(axieth_inst,phy_addr,0x0031,reg);

In Linux, Mirror mode can be enabled by adding the enet-phy-lane-swap property to the PHY nodes as shown below:

&axi_ethernet_0 {  
    local-mac-address = [00 0a 35 00 01 22];  
    phy-handle = <&extphy0>;
    xlnx,has-mdio = <0x1>;  
    phy-mode = "sgmii";  
    mdio {  
        #address-cells = <1>;  
        #size-cells = <0>;  
        extphy0: phy@1 {  
            device_type = "ethernet-phy";  
            reg = <1>;
            xlnx,phy-type = <0x4>;
            ti,fifo-depth = <0x1>;
            enet-phy-lane-swap;
        };  
        extphy1: phy@3 {  
            device_type = "ethernet-phy";  
            reg = <3>;
            xlnx,phy-type = <0x4>;
            ti,fifo-depth = <0x1>;                
            enet-phy-lane-swap;
        };  
        extphy2: phy@12 {  
            device_type = "ethernet-phy";  
            reg = <12>;
            xlnx,phy-type = <0x4>;
            ti,fifo-depth = <0x1>;                
            enet-phy-lane-swap;
        };  
        extphy3: phy@15 {  
            device_type = "ethernet-phy";  
            reg = <15>;
            xlnx,phy-type = <0x4>;
            ti,fifo-depth = <0x1>;                
            enet-phy-lane-swap;
        };  
    };  
};  

PHY registers

The functionality of the TI DP83867 Gigabit Ethernet PHYs can be customized by writing to the registers of the device via the MDIO bus. These registers are detailed in the DP83867 datasheet .

To target a specific PHY for an MDIO transaction, use the MDIO addresses listed in the table below:

Port labelPHY address (binary)PHY address (hex)
P0 (Port 0)000000010x01
P1 (Port 1)000000110x03
P2 (Port 2)000011000x0C
P3 (Port 3)000011110x0F

The tables below list some of the registers and settings that are useful for basic operation of the Ethernet FMC Max. For a comprehensive list of the registers, please refer to the DP83867 datasheet .

Basic Mode Control Register (BMCR), Address 0x0000

BitsDescriptionModeDefault Value
15Software resetR/W, SC0x0
12Enable Auto-negotiationR/W0x1 (strap)
9Restart Auto-negotiationR/W, SC0x0

Basic Mode Status Register (BMSR), Address 0x0001

BitsDescriptionModeDefault Value
5Auto-negotiation CompleteRO0x0

Auto-Negotiation Advertisement Register (ANAR), Address 0x0004

BitsDescriptionModeDefault Value
11Asymmetric pauseR/W0x0
10MAC pauseR/W0x0
8Advertise 100BASE-TX full duplex supportR/W0x1
7Advertise 100BASE-TX supportR/W0x1
6Advertise 10BASE-Te full duplex supportR/W0x1
5Advertise 10BASE-Te supportR/W0x1

Configuration Register 1 (CFG1), Address 0x0009

BitsDescriptionModeDefault Value
9Advertise 1000BASE-T full duplexR/W0x1
8Advertise 1000BASE-T half duplexR/W0x1

PHY Control Register (PHYCR), Address 0x0010

BitsDescriptionModeDefault Value
11SGMII EnableR/W0x1 (Strap)

The SGMII enable setting is set to 1 by strap resistors on the Ethernet FMC Max; it does not need to be set by software.

PHY Status Register (PHYSTS), Address 0x0011

BitsDescriptionModeDefault Value
15:14Established link speed
Valid only when speed and duplex resolved asserted (bit 11)
10b = 1Gbps
01b = 100Mbps
00b = 10Mbps
RO0x2
11Speed and duplex resolvedRO0x0

Interrupt Status Register (ISR), Address 0x0013

BitsDescriptionModeDefault Value
15Auto-negotiation ErrorRO, LH0x0

Configuration Register 2 (CFG2), Address 0x0014

BitsDescriptionModeDefault Value
7SGMII Auto-Negotiation EnableRW0x1

Configuration Register 4 (CFG4), Address 0x0031

BitsDescriptionModeDefault Value
6:5SGMII Auto-negotiation timer duration
00 = 11 ms
10 = 800 us
01 = 2 us
00 = 16ms
RW01
0Port Mirror EnableRWStrap

SGMII Control Register 1 (SGMIICTL1), Address 0x00D3

BitsDescriptionModeDefault Value
14SGMII Configuration
1 = 6-wire mode
0 = 4-wire mode
RW0x0

The SGMII Configuration should be set to 0x0 (4-wire mode) for the Ethernet FMC Max. This is the default setting and does not require setting by software.

Extended Address Space Access

All PHY registers above address 0x001F are in the extended address space and must be accessed using registers REGCR (0x000D) and ADDAR (0x000E). The procedure for accessing registers in the extended address space is described in the DP83867 datasheet . The code snippets below can be used as examples of reading and writing to the extended register space:

Extended Register Read Function

// Read from PHY extended register (address above 0x001F)

void XAxiEthernet_PhyReadExtended(XAxiEthernet *InstancePtr, u32 PhyAddress, 
                                  u32 RegisterNum, u16 *PhyDataPtr)
{
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_REGCR, 0x001F);
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_ADDDR, RegisterNum);
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_REGCR, 0x401F);
	XAxiEthernet_PhyRead(InstancePtr, PhyAddress,TI_PHY_ADDDR, PhyDataPtr);
}

Extended Register Write Function

// Write to PHY extended register (address above 0x001F)

void XAxiEthernet_PhyWriteExtended(XAxiEthernet *InstancePtr, u32 PhyAddress, 
                                   u32 RegisterNum, u16 PhyDataPtr)
{
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_REGCR, 0x001F);
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_ADDDR, RegisterNum);
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_REGCR, 0x401F);
	XAxiEthernet_PhyWrite(InstancePtr, PhyAddress,TI_PHY_ADDDR, PhyDataPtr);
}

EEPROM

The 2K EEPROM is intended to store information that identifies the mezzanine card and also specifies the power supplies required by the card. This information is typically read by the system power management on the carrier board when it is powered up. In typical user applications, it should not be necessary to read the data on the EEPROM, and we highly recommend against writing to the EEPROM. Nevertheless, if you wish to access the EEPROM, it can be read and written to at the I2C address 0x50.

A6A5A4A3A2A1A0Hexadecimal
10100000x50

The EEPROM sits on the FMC card’s dedicated I2C bus. The FMC pins of the EEPROM’s I2C bus are shown below, and it is up to the user to determine their corresponding connections to the FPGA/MPSoC on the carrier board being used.

I2C bus signalFMC pin nameFMC pin number
SCL (clock)SCLC30
SDA (data)SDAC31

FMC EEPROM Tool

The Opsero FMC EEPROM Tool can be used to verify, reprogram or update the EEPROM contents of Opsero FMC products using an FPGA or MPSoC board such as the ZCU102 or VCU118 board.

Supported boards

The tool currently supports the following FPGA/MPSoC boards. You must have at least one of these boards in order to use the tool.

Download

The tool can be downloaded at the link below:

Opsero FMC EEPROM Tool v1.5

The zip file contains a boot file (bitstream or BOOT.bin) for each of the supported boards.

Usage instructions

To run the tool, follow these steps:

  1. Plug the FMC card you wish to reprogram into one of the FMC connectors of your FPGA/MPSoC board. The tool is designed to probe all of the FMC connectors on the FPGA/MPSoC board.

  2. If you are using the ZedBoard, be sure to set the VADJ jumper setting to 1.8V. If you are using the KC705, be sure that your FMC card can support a VADJ of 2.5V, which is the default setting of that board.

  3. Connect the UART of your FPGA/MPSoC board to a PC.

  4. For Zynq and Zynq MP boards, a BOOT.bin file is provided. Copy this file to your board’s SD card and configure it to boot from SD card. Then plug the SD card back into the board and power it up.

  5. For FPGA boards, a bitstream is provided with an embedded ELF file. Power up your FPGA/MPSoC board and then download the bitstream to the FPGA board using the Vivado Hardware Manager tool.

  6. Open a terminal program such as Putty and connect to the serial port of your FPGA/MPSoC board. If you see nothing in the terminal window, press ENTER to redisplay the menu.

  7. Use the menu options to do the following:

    • Program the EEPROM (p)
      You will be asked to select the FMC product from a list, and also to enter the product’s serial number. Note that entering incorrect information here can lead to your FMC card being damaged by a VADJ voltage that is greater than it’s true rating. If you are not sure about the product to select here, please contact Opsero first.