arch/arm64/src/zynq-mpsoc/zynq_enet.c (1,705 lines of code) (raw):

/**************************************************************************** * arch/arm64/src/zynq-mpsoc/zynq_enet.c * * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include <nuttx/config.h> #include <inttypes.h> #include <stdint.h> #include <stdbool.h> #include <time.h> #include <string.h> #include <assert.h> #include <debug.h> #include <errno.h> #include <arpa/inet.h> #include <nuttx/arch.h> #include <nuttx/irq.h> #include <nuttx/wdog.h> #include <nuttx/kmalloc.h> #ifdef CONFIG_NET_PKT # include <nuttx/net/pkt.h> #endif #include "arm64_internal.h" #include "chip.h" #include "zynq_mio.h" #include "zynq_enet.h" #include "hardware/zynq_pll.h" #include <arch/board/board.h> #ifdef CONFIG_NET #ifdef CONFIG_ZYNQ_ENET /**************************************************************************** * Pre-processor Definitions ****************************************************************************/ /* Configuration ************************************************************/ /* If processing is not done at the interrupt level, then work queue support * is required. */ #if !defined(CONFIG_SCHED_WORKQUEUE) # error Work queue support is required #endif /* The low priority work queue is preferred. If it is not enabled, LPWORK * will be the zynqe as HPWORK. * * NOTE: However, the network should NEVER run on the high priority work * queue! That queue is intended only to service short back end interrupt * processing that never suspends. Suspending the high priority work queue * may bring the system to its knees! */ #define ETHWORK LPWORK /* Number of buffer for RX */ #ifndef CONFIG_ZYNQ_GMAC_NRXBUFFERS # define CONFIG_ZYNQ_GMAC_NRXBUFFERS 16 #endif /* Number of buffer for TX */ #ifndef CONFIG_ZYNQ_GMAC_NTXBUFFERS # define CONFIG_ZYNQ_GMAC_NTXBUFFERS 8 #endif #ifndef CONFIG_ZYNQ_GMAC_PHYADDR # error "CONFIG_ZYNQ_GMAC_PHYADDR must be defined in the NuttX configuration" #endif /* GMAC buffer sizes, number of buffers, and number of descriptors. *********/ #define GMAC_RX_UNITSIZE CONFIG_ZYNQ_GMAC_RXDMA_BUFSIZE /* DMA buffer size for receive */ #define GMAC_TX_UNITSIZE CONFIG_NET_ETH_PKTSIZE /* MAX size for Ethernet packet */ /* The MAC can support frame lengths up to 1536 bytes */ #define GMAC_MAX_FRAMELEN 1536 #if CONFIG_NET_ETH_PKTSIZE >GMAC_MAX_FRAMELEN # error CONFIG_NET_ETH_PKTSIZE is too large #endif /* Extremely detailed register debug that you would normally never want * enabled. */ #ifndef CONFIG_DEBUG_NET_INFO # undef CONFIG_ZYNQ_GMAC_REGDEBUG #endif #ifdef CONFIG_NET_DUMPPACKET # define zynq_dumppacket(m,a,n) lib_dumpbuffer(m,a,n) #else # define zynq_dumppacket(m,a,n) #endif /* Timing *******************************************************************/ /* TX timeout = 1 minute */ #define ZYNQ_TXTIMEOUT (60*CLK_TCK) #define ZYNQ_GEM_FREQUENCY_10 2500000UL #define ZYNQ_GEM_FREQUENCY_100 25000000UL #define ZYNQ_GEM_FREQUENCY_1000 125000000UL /* PHY read/write delays in loop counts */ #define PHY_RETRY_MAX 300000 /* Helpers ******************************************************************/ /* This is a helper pointer for accessing the contents of the GMAC * header */ #define BUF ((struct eth_hdr_s *)priv->dev.d_buf) /**************************************************************************** * Private Function Prototypes ****************************************************************************/ /* Register operations ******************************************************/ #if defined(CONFIG_ZYNQ_GMAC_REGDEBUG) && defined(CONFIG_DEBUG_FEATURES) static bool zynq_checkreg(struct zynq_gmac_s *priv, bool wr, uint32_t regval, uintptr_t address); static uint32_t zynq_getreg(struct zynq_gmac_s *priv, uintptr_t addr); static void zynq_putreg(struct zynq_gmac_s *priv, uintptr_t addr, uint32_t val); #else # define zynq_getreg(priv,addr) getreg32(priv->base + addr) # define zynq_putreg(priv,addr,val) putreg32(val,priv->base + addr) #endif /* Buffer management */ static uint16_t zynq_txinuse(struct zynq_gmac_s *priv); static uint16_t zynq_txfree(struct zynq_gmac_s *priv); static int zynq_buffer_initialize(struct zynq_gmac_s *priv); static void zynq_buffer_free(struct zynq_gmac_s *priv); /* Common TX logic */ static int zynq_transmit(struct zynq_gmac_s *priv); static int zynq_txpoll(struct net_driver_s *dev); static void zynq_dopoll(struct zynq_gmac_s *priv); /* Interrupt handling */ static int zynq_recvframe(struct zynq_gmac_s *priv); static void zynq_receive(struct zynq_gmac_s *priv); static void zynq_txdone(struct zynq_gmac_s *priv); static void zynq_interrupt_work(void *arg); static int zynq_gmac_interrupt(int irq, void *context, void *arg); /* Watchdog timer expirations */ static void zynq_txtimeout_work(void *arg); static void zynq_txtimeout_expiry(wdparm_t arg); /* NuttX callback functions */ static int zynq_ifup(struct net_driver_s *dev); static int zynq_ifdown(struct net_driver_s *dev); static void zynq_txavail_work(void *arg); static int zynq_txavail(struct net_driver_s *dev); #if defined(CONFIG_NET_MCASTGROUP) || defined(CONFIG_NET_ICMPv6) static unsigned int zynq_hashindx(const uint8_t *mac); static int zynq_addmac(struct net_driver_s *dev, const uint8_t *mac); #endif #ifdef CONFIG_NET_MCASTGROUP static int zynq_rmmac(struct net_driver_s *dev, const uint8_t *mac); #endif #ifdef CONFIG_NETDEV_IOCTL static int zynq_ioctl(struct net_driver_s *dev, int cmd, unsigned long arg); #endif /* PHY Initialization */ #if defined(CONFIG_DEBUG_NET) && defined(CONFIG_DEBUG_INFO) static void zynq_phydump(struct zynq_gmac_s *priv); #else # define zynq_phydump(priv) #endif #if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT) static int zynq_phyintenable(struct zynq_gmac_s *priv); #endif static void zynq_enablemdio(struct zynq_gmac_s *priv); static void zynq_disablemdio(struct zynq_gmac_s *priv); static int zynq_phywait(struct zynq_gmac_s *priv); static int zynq_phyreset(struct zynq_gmac_s *priv); static int zynq_phyfind(struct zynq_gmac_s *priv, uint8_t *phyaddr); #ifdef CONFIG_ZYNQ_GMAC_AUTONEG static int zynq_autonegotiate(struct zynq_gmac_s *priv); #else static void zynq_linkspeed(struct zynq_gmac_s *priv); #endif static void zynq_mdcclock(struct zynq_gmac_s *priv); static int zynq_phyinit(struct zynq_gmac_s *priv); /* GMAC Initialization */ static void zynq_txreset(struct zynq_gmac_s *priv); static void zynq_rxreset(struct zynq_gmac_s *priv); static void zynq_gmac_reset(struct zynq_gmac_s *priv); static void zynq_macaddress(struct zynq_gmac_s *priv); static int zynq_gmac_configure(struct zynq_gmac_s *priv); /**************************************************************************** * Private Data ****************************************************************************/ /* A single packet buffer is used * * REVISIT: It might be possible to use this option to send and receive * messages directly into the DMA buffers, saving a copy. There might be * complications on the receiving side, however, where buffers may wrap * and where the size of the received frame will typically be smaller than * a full packet. */ #ifdef CONFIG_ZYNQ_ENET1 static uint8_t g_enet1_pktbuf[MAX_NETDEV_PKTSIZE + CONFIG_NET_GUARDSIZE]; #endif #ifdef CONFIG_ZYNQ_ENET2 static uint8_t g_enet2_pktbuf[MAX_NETDEV_PKTSIZE + CONFIG_NET_GUARDSIZE]; #endif #ifdef CONFIG_ZYNQ_ENET3 static uint8_t g_enet3_pktbuf[MAX_NETDEV_PKTSIZE + CONFIG_NET_GUARDSIZE]; #endif #ifdef CONFIG_ZYNQ_ENET4 static uint8_t g_enet4_pktbuf[MAX_NETDEV_PKTSIZE + CONFIG_NET_GUARDSIZE]; #endif #ifdef CONFIG_ZYNQ_GMAC_PREALLOCATE /* Preallocated data */ /* TX descriptors list */ #ifdef CONFIG_ZYNQ_ENET1 static struct gmac_txdesc_s g_enet1_txdesc[CONFIG_ZYNQ_GMAC_NTXBUFFERS + 1] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET2 static struct gmac_txdesc_s g_enet2_txdesc[CONFIG_ZYNQ_GMAC_NTXBUFFERS + 1] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET3 static struct gmac_txdesc_s g_enet3_txdesc[CONFIG_ZYNQ_GMAC_NTXBUFFERS + 1] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET4 static struct gmac_txdesc_s g_enet4_txdesc[CONFIG_ZYNQ_GMAC_NTXBUFFERS + 1] aligned_data(8); #endif /* RX descriptors list */ #ifdef CONFIG_ZYNQ_ENET1 static struct gmac_rxdesc_s g_enet1_rxdesc[CONFIG_ZYNQ_GMAC_NRXBUFFERS + 1] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET2 static struct gmac_rxdesc_s g_enet2_rxdesc[CONFIG_ZYNQ_GMAC_NRXBUFFERS + 1] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET3 static struct gmac_rxdesc_s g_enet3_rxdesc[CONFIG_ZYNQ_GMAC_NRXBUFFERS + 1] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET4 static struct gmac_rxdesc_s g_enet4_rxdesc[CONFIG_ZYNQ_GMAC_NRXBUFFERS + 1] aligned_data(8); #endif /* Transmit Buffers * * Section 3.6 of AMBA 2.0 spec states that burst should not cross 1K * Boundaries. Receive buffer manager writes are burst of * 2 words => 3 lsb bits of the address shall be set to 0 */ #ifdef CONFIG_ZYNQ_ENET1 static uint8_t g_enet1_txbuffer [CONFIG_ZYNQ_GMAC_NTXBUFFERS *GMAC_TX_UNITSIZE] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET2 static uint8_t g_enet2_txbuffer [CONFIG_ZYNQ_GMAC_NTXBUFFERS * GMAC_TX_UNITSIZE] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET3 static uint8_t g_enet3_txbuffer [CONFIG_ZYNQ_GMAC_NTXBUFFERS * GMAC_TX_UNITSIZE] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET4 static uint8_t g_enet4_txbuffer [CONFIG_ZYNQ_GMAC_NTXBUFFERS * GMAC_TX_UNITSIZE] aligned_data(8); #endif /* Receive Buffers */ #ifdef CONFIG_ZYNQ_ENET1 static uint8_t g_enet1_rxbuffer [CONFIG_ZYNQ_GMAC_NRXBUFFERS * GMAC_RX_UNITSIZE] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET2 static uint8_t g_enet2_rxbuffer [CONFIG_ZYNQ_GMAC_NRXBUFFERS * GMAC_RX_UNITSIZE] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET3 static uint8_t g_enet3_rxbuffer [CONFIG_ZYNQ_GMAC_NRXBUFFERS * GMAC_RX_UNITSIZE] aligned_data(8); #endif #ifdef CONFIG_ZYNQ_ENET4 static uint8_t g_enet4_rxbuffer [CONFIG_ZYNQ_GMAC_NRXBUFFERS * GMAC_RX_UNITSIZE] aligned_data(8); #endif #endif /* The driver state singleton */ static struct zynq_gmac_s g_gmac[] = { #ifdef CONFIG_ZYNQ_ENET1 { .dev = { .d_buf = g_enet1_pktbuf, /* Single packet buffer */ .d_ifup = zynq_ifup, /* I/F up (new IP address) callback */ .d_ifdown = zynq_ifdown, /* I/F down callback */ .d_txavail = zynq_txavail, /* New TX data callback */ #ifdef CONFIG_NET_MCASTGROUP .d_addmac = zynq_addmac, /* Add multicast MAC address */ .d_rmmac = zynq_rmmac, /* Remove multicast MAC address */ #endif #ifdef CONFIG_NETDEV_IOCTL .d_ioctl = zynq_ioctl, /* Support PHY ioctl() calls */ #endif }, .base = ZYNQ_MPSOC_GEM0_ADDR, .num = 0, .ifup = true, .irq = ZYNQ_MPSOC_IRQ_GEM0, #ifdef CONFIG_ZYNQ_GMAC_PREALLOCATE .txdesc = g_enet1_txdesc, .rxdesc = g_enet1_rxdesc, .txbuffer = g_enet1_txbuffer, .rxbuffer = g_enet1_rxbuffer, #endif }, #endif #ifdef CONFIG_ZYNQ_ENET2 { .dev = { .d_buf = g_enet2_pktbuf, /* Single packet buffer */ .d_ifup = zynq_ifup, /* I/F up (new IP address) callback */ .d_ifdown = zynq_ifdown, /* I/F down callback */ .d_txavail = zynq_txavail, /* New TX data callback */ #ifdef CONFIG_NET_MCASTGROUP .d_addmac = zynq_addmac, /* Add multicast MAC address */ .d_rmmac = zynq_rmmac, /* Remove multicast MAC address */ #endif #ifdef CONFIG_NETDEV_IOCTL .d_ioctl = zynq_ioctl, /* Support PHY ioctl() calls */ #endif }, .base = ZYNQ_MPSOC_GEM1_ADDR, .num = 1, .ifup = true, .irq = ZYNQ_MPSOC_IRQ_GEM1, #ifdef CONFIG_ZYNQ_GMAC_PREALLOCATE .txdesc = g_enet2_txdesc, .rxdesc = g_enet2_rxdesc, .txbuffer = g_enet2_txbuffer, .rxbuffer = g_enet2_rxbuffer, #endif }, #endif #ifdef CONFIG_ZYNQ_ENET3 { .dev = { .d_buf = g_enet3_pktbuf, /* Single packet buffer */ .d_ifup = zynq_ifup, /* I/F up (new IP address) callback */ .d_ifdown = zynq_ifdown, /* I/F down callback */ .d_txavail = zynq_txavail, /* New TX data callback */ #ifdef CONFIG_NET_MCASTGROUP .d_addmac = zynq_addmac, /* Add multicast MAC address */ .d_rmmac = zynq_rmmac, /* Remove multicast MAC address */ #endif #ifdef CONFIG_NETDEV_IOCTL .d_ioctl = zynq_ioctl, /* Support PHY ioctl() calls */ #endif }, .base = ZYNQ_MPSOC_GEM2_ADDR, .num = 2, .ifup = true, .irq = ZYNQ_MPSOC_IRQ_GEM2, #ifdef CONFIG_ZYNQ_GMAC_PREALLOCATE .txdesc = g_enet3_txdesc, .rxdesc = g_enet3_rxdesc, .txbuffer = g_enet3_txbuffer, .rxbuffer = g_enet3_rxbuffer, #endif }, #endif #ifdef CONFIG_ZYNQ_ENET4 { .dev = { .d_buf = g_enet4_pktbuf, /* Single packet buffer */ .d_ifup = zynq_ifup, /* I/F up (new IP address) callback */ .d_ifdown = zynq_ifdown, /* I/F down callback */ .d_txavail = zynq_txavail, /* New TX data callback */ #ifdef CONFIG_NET_MCASTGROUP .d_addmac = zynq_addmac, /* Add multicast MAC address */ .d_rmmac = zynq_rmmac, /* Remove multicast MAC address */ #endif #ifdef CONFIG_NETDEV_IOCTL .d_ioctl = zynq_ioctl, /* Support PHY ioctl() calls */ #endif }, .base = ZYNQ_MPSOC_GEM3_ADDR, .num = 3, .ifup = true, .irq = ZYNQ_MPSOC_IRQ_GEM3, #ifdef CONFIG_ZYNQ_GMAC_PREALLOCATE .txdesc = g_enet4_txdesc, .rxdesc = g_enet4_rxdesc, .txbuffer = g_enet4_txbuffer, .rxbuffer = g_enet4_rxbuffer, #endif }, #endif }; /**************************************************************************** * Private Functions ****************************************************************************/ /**************************************************************************** * Name: zynq_checkreg * * Description: * Check if the current register access is a duplicate of the preceding. * * Input Parameters: * regval - The value to be written * address - The address of the register to write to * * Returned Value: * true: This is the first register access of this type. * flase: This is the zynqe as the preceding register access. * ****************************************************************************/ #ifdef CONFIG_ZYNQ_GMAC_REGDEBUG static bool zynq_checkreg(struct zynq_gmac_s *priv, bool wr, uint32_t regval, uintptr_t address) { if (wr == priv->wrlast && /* Same kind of access? */ regval == priv->vallast && /* Same value? */ address == priv->addrlast) /* Same address? */ { /* Yes, then just keep a count of the number of times we did this. */ priv->ntimes++; return false; } else { /* Did we do the previous operation more than once? */ if (priv->ntimes > 0) { /* Yes... show how many times we did it */ ninfo("...[Repeats %d times]...\n", priv->ntimes); } /* Save information about the new access */ priv->wrlast = wr; priv->vallast = regval; priv->addrlast = address; priv->ntimes = 0; } /* Return true if this is the first time that we have done this operation */ return true; } #endif /**************************************************************************** * Name: zynq_getreg * * Description: * Read any 32-bit register using an absolute * ****************************************************************************/ #ifdef CONFIG_ZYNQ_GMAC_REGDEBUG static uint32_t zynq_getreg(struct zynq_gmac_s *priv, uintptr_t address) { uint32_t regval = getreg32(priv->base + address); if (zynq_checkreg(priv, false, regval, address)) { ninfo("%08x->%08x\n", address, regval); } return regval; } #endif /**************************************************************************** * Name: zynq_putreg * * Description: * Write to any 32-bit register using an absolute address * ****************************************************************************/ #ifdef CONFIG_ZYNQ_GMAC_REGDEBUG static void zynq_putreg(struct zynq_gmac_s *priv, uintptr_t address, uint32_t regval) { if (zynq_checkreg(priv, true, regval, address)) { ninfo("%08x<-%08x\n", address, regval); } putreg32(regval, priv->base + address); } #endif /**************************************************************************** * Function: zynq_txinuse * * Description: * Return the number of TX buffers in-use * * Input Parameters: * priv - The GMAC driver state * * Returned Value: * The number of TX buffers in-use * ****************************************************************************/ static uint16_t zynq_txinuse(struct zynq_gmac_s *priv) { uint32_t txhead32 = (uint32_t)priv->txhead; if ((uint32_t)priv->txtail > txhead32) { txhead32 += CONFIG_ZYNQ_GMAC_NTXBUFFERS; } return (uint16_t)(txhead32 - (uint32_t)priv->txtail); } /**************************************************************************** * Function: zynq_txfree * * Description: * Return the number of TX buffers available * * Input Parameters: * priv - The GMAC driver state * * Returned Value: * The number of TX buffers available * ****************************************************************************/ static uint16_t zynq_txfree(struct zynq_gmac_s *priv) { /* The number available is equal to the total number of buffers, minus the * number of buffers in use. Notice that that actual number of buffers is * the configured size minus 1. */ return (CONFIG_ZYNQ_GMAC_NTXBUFFERS - 1) - zynq_txinuse(priv); } /**************************************************************************** * Function: zynq_buffer_initialize * * Description: * Allocate aligned TX and RX descriptors and buffers. For the case of * pre-allocated structures, the function degenerates to a few assignments. * * Input Parameters: * priv - The GMAC driver state * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * Called very early in the initialization sequence. * ****************************************************************************/ static int zynq_buffer_initialize(struct zynq_gmac_s *priv) { #ifndef CONFIG_ZYNQ_GMAC_PREALLOCATE /* Not use pre-allocated buffers */ size_t allocsize; /* Allocate buffers */ allocsize = (CONFIG_ZYNQ_GMAC_NTXBUFFERS + 1) * sizeof(struct gmac_txdesc_s); priv->txdesc = kmm_memalign(8, allocsize); if (!priv->txdesc) { nerr("ERROR: Failed to allocate TX descriptors\n"); return -ENOMEM; } memset(priv->txdesc, 0, allocsize); allocsize = (CONFIG_ZYNQ_GMAC_NRXBUFFERS + 1) * sizeof(struct gmac_rxdesc_s); priv->rxdesc = kmm_memalign(8, allocsize); if (!priv->rxdesc) { nerr("ERROR: Failed to allocate RX descriptors\n"); zynq_buffer_free(priv); return -ENOMEM; } memset(priv->rxdesc, 0, allocsize); allocsize = CONFIG_ZYNQ_GMAC_NTXBUFFERS * GMAC_TX_UNITSIZE; priv->txbuffer = kmm_memalign(8, allocsize); if (!priv->txbuffer) { nerr("ERROR: Failed to allocate TX buffer\n"); zynq_buffer_free(priv); return -ENOMEM; } allocsize = CONFIG_ZYNQ_GMAC_NRXBUFFERS * GMAC_RX_UNITSIZE; priv->rxbuffer = kmm_memalign(8, allocsize); if (!priv->rxbuffer) { nerr("ERROR: Failed to allocate RX buffer\n"); zynq_buffer_free(priv); return -ENOMEM; } #endif DEBUGASSERT(((uintptr_t)priv->rxdesc & 7) == 0 && ((uintptr_t)priv->rxbuffer & 7) == 0 && ((uintptr_t)priv->txdesc & 7) == 0 && ((uintptr_t)priv->txbuffer & 7) == 0); return OK; } /**************************************************************************** * Function: zynq_buffer_free * * Description: * Free aligned TX and RX descriptors and buffers. For the case of * pre-allocated structures, the function does nothing. * * Input Parameters: * priv - The GMAC driver state * * Returned Value: * None * ****************************************************************************/ static void zynq_buffer_free(struct zynq_gmac_s *priv) { #ifndef CONFIG_ZYNQ_GMAC_PREALLOCATE /* Free allocated buffers */ if (priv->txdesc) { kmm_free(priv->txdesc); priv->txdesc = NULL; } if (priv->rxdesc) { kmm_free(priv->rxdesc); priv->rxdesc = NULL; } if (priv->txbuffer) { kmm_free(priv->txbuffer); priv->txbuffer = NULL; } if (priv->rxbuffer) { kmm_free(priv->rxbuffer); priv->rxbuffer = NULL; } #endif } /**************************************************************************** * Function: zynq_transmit * * Description: * Start hardware transmission. Called either from the TX done interrupt * handling or from watchdog based polling. * * Input Parameters: * priv - Reference to the driver state structure * * Returned Value: * OK on success; a negated errno on failure * * Assumptions: * May or may not be called from an interrupt handler. In either case, * global interrupts are disabled, either explicitly or indirectly through * interrupt handling logic. * ****************************************************************************/ static int zynq_transmit(struct zynq_gmac_s *priv) { struct net_driver_s *dev = &priv->dev; volatile struct gmac_txdesc_s *txdesc; uintptr_t dest; uint32_t regval; uint32_t status; ninfo("d_len: %d txhead: %d txtail: %d\n", dev->d_len, priv->txhead, priv->txtail); zynq_dumppacket("Transmit packet", dev->d_buf, dev->d_len); /* Check parameter */ if (dev->d_len > GMAC_TX_UNITSIZE) { nerr("ERROR: Packet too big: %d\n", dev->d_len); return -EINVAL; } /* Pointer to the current TX descriptor */ txdesc = &priv->txdesc[priv->txhead]; /* If no free TX descriptor, buffer can't be sent */ if (zynq_txfree(priv) < 1) { nerr("ERROR: No free TX descriptors\n"); return -EBUSY; } /* Mark buffer as used temporarily so DMA doesn't operate on it */ status = GMACTXD_STA_USED | GMACTXD_STA_LAST; txdesc->status = status; up_clean_dcache((uintptr_t)txdesc, (uintptr_t)txdesc + sizeof(struct gmac_txdesc_s)); /* Setup/Copy data to transmission buffer */ if (dev->d_len > 0) { /* Driver managed the ring buffer */ dest = (uintptr_t)txdesc->addr; memcpy((void *)dest, dev->d_buf, dev->d_len); up_clean_dcache(txdesc->addr, txdesc->addr + dev->d_len); } /* Update TX descriptor status. */ status = dev->d_len & GMAC_STATUS_LENGTH_MASK; status = dev->d_len | GMACTXD_STA_LAST; if (priv->txhead == CONFIG_ZYNQ_GMAC_NTXBUFFERS - 1) { status |= GMACTXD_STA_WRAP; } /* Update the descriptor status and flush the updated value to RAM */ txdesc->status = status; up_clean_dcache((uintptr_t)txdesc, (uintptr_t)txdesc + sizeof(struct gmac_txdesc_s)); /* Increment the head index */ if (++priv->txhead >= CONFIG_ZYNQ_GMAC_NTXBUFFERS) { priv->txhead = 0; } /* Now start transmission (if it is not already done) */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); regval |= GMAC_NCR_TSTART; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); /* Setup the TX timeout watchdog (perhaps restarting the timer) */ wd_start(&priv->txtimeout, ZYNQ_TXTIMEOUT, zynq_txtimeout_expiry, (wdparm_t)priv); /* Set d_len to zero meaning that the d_buf[] packet buffer is again * available. */ dev->d_len = 0; /* If we have no more available TX descriptors, then we must disable the * RCOMP interrupt to stop further RX processing. Why? Because EACH RX * packet that is dispatched is also an opportunity to reply with a TX * packet. So, if we cannot handle an RX packet reply, then we disable * all RX packet processing. */ if (zynq_txfree(priv) < 1) { ninfo("Disabling RX interrupts\n"); zynq_putreg(priv, ZYNQ_GMAC_IDR, GMAC_INT_RCOMP); } return OK; } /**************************************************************************** * Function: zynq_txpoll * * Description: * The transmitter is available, check if the network has any outgoing * packets ready to send. This is a callback from devif_poll(). * devif_poll() may be called: * * 1. When the preceding TX packet send is complete, * 2. When the preceding TX packet send timesout and the interface is reset * 3. During normal TX polling * * Input Parameters: * dev - Reference to the NuttX driver state structure * * Returned Value: * OK on success; a negated errno on failure * * Assumptions: * May or may not be called from an interrupt handler. In either case, * global interrupts are disabled, either explicitly or indirectly through * interrupt handling logic. * ****************************************************************************/ static int zynq_txpoll(struct net_driver_s *dev) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; /* Send the packet */ zynq_transmit(priv); /* Check if there are any free TX descriptors. We cannot perform * the TX poll if we do not have buffering for another packet. */ if (zynq_txfree(priv) == 0) { /* We have to terminate the poll if we have no more descriptors * available for another transfer. */ return -EBUSY; } /* If zero is returned, the polling will continue until all connections * have been examined. */ return 0; } /**************************************************************************** * Function: zynq_dopoll * * Description: * The function is called in order to perform an out-of-sequence TX poll. * This is done: * * 1. After completion of a transmission (zynq_txdone), * 2. When new TX data is available (zynq_txavail), and * 3. After a TX timeout to restart the sending process * (zynq_txtimeout_expiry). * * Input Parameters: * priv - Reference to the driver state structure * * Returned Value: * None * * Assumptions: * Global interrupts are disabled by interrupt handling logic. * ****************************************************************************/ static void zynq_dopoll(struct zynq_gmac_s *priv) { struct net_driver_s *dev = &priv->dev; /* Check if there are any free TX descriptors. We cannot perform the * TX poll if we do not have buffering for another packet. */ if (zynq_txfree(priv) > 0) { /* If we have the descriptor, * then poll the network for new XMIT data. */ devif_poll(dev, zynq_txpoll); } } /**************************************************************************** * Function: zynq_recvframe * * Description: * The function is called when a frame is received. It scans the RX * descriptors of the received frame and assembles the full packet/ * * NOTE: This function will silently discard any packets containing errors. * * Input Parameters: * priv - Reference to the driver state structure * * Returned Value: * OK if a packet was successfully returned; -EAGAIN if there are no * further packets available * * Assumptions: * - Global interrupts are disabled by interrupt handling logic. * - The RX descriptor D-cache list has been invalided to force fetching * from RAM. * ****************************************************************************/ static int zynq_recvframe(struct zynq_gmac_s *priv) { volatile struct gmac_rxdesc_s *rxdesc; struct net_driver_s *dev; uintptr_t src; uint8_t *dest; uint32_t rxndx; uint32_t pktlen; uint16_t copylen; bool isframe; /* Process received RX descriptor. The ownership bit is set by the GMAC * once it has successfully written a frame to memory. */ dev = &priv->dev; dev->d_len = 0; dest = dev->d_buf; pktlen = 0; rxndx = priv->rxndx; rxdesc = &priv->rxdesc[rxndx]; isframe = false; /* Invalidate the RX descriptor to force re-fetching from RAM */ up_invalidate_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + sizeof(struct gmac_rxdesc_s)); ninfo("rxndx: %" PRId32 "\n", rxndx); while ((rxdesc->addr & GMACRXD_ADDR_OWNER) != 0) { /* The start of frame bit indicates the beginning of a frame. Discard * any previous fragments. */ if ((rxdesc->status & GMACRXD_STA_SOF) != 0) { /* Skip previous fragments */ while (rxndx != priv->rxndx) { /* Give ownership back to the GMAC */ rxdesc = &priv->rxdesc[priv->rxndx]; rxdesc->addr &= ~(GMACRXD_ADDR_OWNER); /* Flush the modified RX descriptor to RAM */ up_clean_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + sizeof(struct gmac_rxdesc_s)); /* Increment the RX index */ if (++priv->rxndx >= CONFIG_ZYNQ_GMAC_NRXBUFFERS) { priv->rxndx = 0; } } /* Reset the packet data pointer and packet length */ dest = dev->d_buf; pktlen = 0; /* Start to gather buffers into the packet buffer */ isframe = true; } /* Increment the working index */ if (++rxndx >= CONFIG_ZYNQ_GMAC_NRXBUFFERS) { rxndx = 0; } /* Copy data into the packet buffer */ if (isframe) { if (rxndx == priv->rxndx) { nerr("ERROR: No EOF (Invalid of buffers too small)\n"); do { /* Give ownership back to the GMAC */ rxdesc = &priv->rxdesc[priv->rxndx]; rxdesc->addr &= ~(GMACRXD_ADDR_OWNER); /* Flush the modified RX descriptor to RAM */ up_clean_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + sizeof(struct gmac_rxdesc_s)); /* Increment the RX index */ if (++priv->rxndx >= CONFIG_ZYNQ_GMAC_NRXBUFFERS) { priv->rxndx = 0; } } while (rxndx != priv->rxndx); return -EIO; } /* Get the number of bytes to copy from the buffer */ copylen = GMAC_RX_UNITSIZE; if ((pktlen + copylen) > CONFIG_NET_ETH_PKTSIZE) { copylen = CONFIG_NET_ETH_PKTSIZE - pktlen; } /* Get the data source. Invalidate the source memory region to * force reload from RAM. */ src = (uintptr_t)(rxdesc->addr & GMACRXD_ADDR_MASK); up_invalidate_dcache(src, src + copylen); /* And do the copy */ memcpy(dest, (uintptr_t *)src, copylen); dest += copylen; pktlen += copylen; /* If the end of frame has been received, return the data */ if ((rxdesc->status & GMACRXD_STA_EOF) != 0) { /* Frame size from the GMAC */ dev->d_len = (rxdesc->status & GMACRXD_STA_FRLEN_MASK); ninfo("packet %d-%" PRId32 " (%d)\n", priv->rxndx, rxndx, dev->d_len); /* All data have been copied in the application frame buffer, * release the RX descriptor */ while (priv->rxndx != rxndx) { /* Give ownership back to the GMAC */ rxdesc = &priv->rxdesc[priv->rxndx]; rxdesc->addr &= ~(GMACRXD_ADDR_OWNER); /* Flush the modified RX descriptor to RAM */ up_clean_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + sizeof(struct gmac_rxdesc_s)); /* Increment the RX index */ if (++priv->rxndx >= CONFIG_ZYNQ_GMAC_NRXBUFFERS) { priv->rxndx = 0; } } /* Check if the device packet buffer was large enough to accept * all of the data. */ ninfo("rxndx: %d d_len: %d\n", priv->rxndx, dev->d_len); if (pktlen < dev->d_len) { nerr("ERROR: Buffer size %d; frame size %" PRId32 "\n", dev->d_len, pktlen); return -E2BIG; } return OK; } } /* We have not encount the SOF yet... discard this fragment and keep * looking */ else { /* Give ownership back to the GMAC */ rxdesc->addr &= ~(GMACRXD_ADDR_OWNER); /* Flush the modified RX descriptor to RAM */ up_clean_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + sizeof(struct gmac_rxdesc_s)); priv->rxndx = rxndx; } /* Process the next buffer */ rxdesc = &priv->rxdesc[rxndx]; /* Invalidate the RX descriptor to force re-fetching from RAM */ up_invalidate_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + sizeof(struct gmac_rxdesc_s)); } /* isframe indicates that we have found a SOF. If we've received a SOF, * but not an EOF in the sequential buffers we own, it must mean that we * have a partial packet. This should only happen if there was a Buffer * Not Available (BNA) error. When bursts of data come in, quickly * filling the available buffers, before our interrupts can even service * them. Eventually, the ring buffer loops back on itself and the * peripheral sees it cannot write the next fragment of the packet. * * In this case, we keep the rxndx at the start of the last frame, since * the peripheral will finish writing the packet there next. */ if (!isframe) { priv->rxndx = rxndx; } ninfo("rxndx: %d\n", priv->rxndx); return -EAGAIN; } /**************************************************************************** * Function: zynq_receive * * Description: * An interrupt was received indicating the availability of onr or more * new RX packets in FIFO memory. * * Input Parameters: * priv - Reference to the driver state structure * * Returned Value: * None * * Assumptions: * Global interrupts are disabled by interrupt handling logic. * ****************************************************************************/ static void zynq_receive(struct zynq_gmac_s *priv) { struct net_driver_s *dev = &priv->dev; /* Loop while while zynq_recvframe() successfully retrieves valid * GMAC frames. */ while (zynq_recvframe(priv) == OK) { zynq_dumppacket("Received packet", dev->d_buf, dev->d_len); /* Check if the packet is a valid size for the network buffer * configuration (this should not happen) */ if (dev->d_len > CONFIG_NET_ETH_PKTSIZE) { nwarn("WARNING: Dropped, Too big: %d\n", dev->d_len); continue; } #ifdef CONFIG_NET_PKT /* When packet sockets are enabled, feed the frame into the packet * tap */ pkt_input(&priv->dev); #endif /* We only accept IP packets of the configured type and ARP packets */ #ifdef CONFIG_NET_IPv4 if (BUF->type == HTONS(ETHTYPE_IP)) { ninfo("IPv4 frame\n"); /* Receive an IPv4 packet from the network device */ ipv4_input(&priv->dev); /* If the above function invocation resulted in data that should be * sent out on the network, the field d_len will set to a * value > 0. */ if (priv->dev.d_len > 0) { /* And send the packet */ zynq_transmit(priv); } } else #endif #ifdef CONFIG_NET_IPv6 if (BUF->type == HTONS(ETHTYPE_IP6)) { ninfo("IPv6 frame\n"); /* Give the IPv6 packet to the network layer */ ipv6_input(&priv->dev); /* If the above function invocation resulted in data that should be * sent out on the network, the field d_len will set to a * value > 0. */ if (priv->dev.d_len > 0) { /* And send the packet */ zynq_transmit(priv); } } else #endif #ifdef CONFIG_NET_ARP if (BUF->type == HTONS(ETHTYPE_ARP)) { ninfo("ARP frame\n"); /* Handle ARP packet */ arp_input(&priv->dev); /* If the above function invocation resulted in data that should be * sent out on the network, the field d_len will set to a * value > 0. */ if (priv->dev.d_len > 0) { zynq_transmit(priv); } } else #endif { nwarn("WARNING: Dropped, Unknown type: %04x\n", BUF->type); } } } /**************************************************************************** * Function: zynq_txdone * * Description: * An interrupt was received indicating that one or more frames have * completed transmission. * * Input Parameters: * priv - Reference to the driver state structure * * Returned Value: * None * * Assumptions: * Global interrupts are disabled by the watchdog logic. * ****************************************************************************/ static void zynq_txdone(struct zynq_gmac_s *priv) { struct gmac_txdesc_s *txdesc; struct net_driver_s *dev = &priv->dev; /* Are there any outstanding transmissions? Loop until either (1) all of * the TX descriptors have been examined, or (2) until we encounter the * first descriptor that is still in use by the hardware. */ while (priv->txhead != priv->txtail) { /* Yes.. check the next buffer at the tail of the list */ txdesc = &priv->txdesc[priv->txtail]; up_invalidate_dcache((uintptr_t)txdesc, (uintptr_t)txdesc + sizeof(struct gmac_txdesc_s)); /* Is this TX descriptor done transmitting? (ZYNQD36 datasheet, * p. 934) * First TX descriptor in chain has GMACTXD_STA_USED = 1 */ if ((txdesc->status & GMACTXD_STA_USED) == 0) { /* Yes.. the descriptor is still in use. However, I have seen a * case (only repeatable on start-up) where the USED bit is never * set. Yikes! If we have encountered the first still busy * descriptor, then we should also have TQBD equal to the * descriptor address. If it is not, then treat is as used anyway. */ if (priv->txtail == 0 && (uintptr_t)txdesc != zynq_getreg(priv, ZYNQ_GMAC_TBQB)) { ninfo("TX buffer marked in-use: unusual startup case (%d)\n", priv->txtail); txdesc->status = (uint32_t) dev->d_len | GMACTXD_STA_USED; up_clean_dcache((uintptr_t)txdesc, (uintptr_t)txdesc + sizeof(struct gmac_txdesc_s)); } else if (((txdesc->status & GMACTXD_STA_USED) == 0) && ((txdesc->status & GMACTXD_STA_LAST) != 0)) { txdesc->status = (uint32_t) dev->d_len | GMACTXD_STA_USED | GMACTXD_STA_LAST; up_clean_dcache((uintptr_t)txdesc, (uintptr_t)txdesc + sizeof(struct gmac_txdesc_s)); } else { /* Otherwise, the descriptor is truly in use. Break out of the * loop now. */ break; } } /* Increment the tail index */ if (++priv->txtail >= CONFIG_ZYNQ_GMAC_NTXBUFFERS) { /* Wrap to the beginning of the TX descriptor list */ priv->txtail = 0; } /* At least one TX descriptor is available. Re-enable RX interrupts. * RX interrupts may previously have been disabled when we ran out of * TX descriptors (see comments in zynq_transmit()). */ zynq_putreg(priv, ZYNQ_GMAC_IER, GMAC_INT_RCOMP); } /* Then poll the network for new XMIT data */ zynq_dopoll(priv); } /**************************************************************************** * Function: zynq_interrupt_work * * Description: * Perform interrupt related work from the worker thread * * Input Parameters: * arg - The argument passed when work_queue() was called. * * Returned Value: * OK on success * * Assumptions: * Ethernet interrupts are disabled * ****************************************************************************/ static void zynq_interrupt_work(void *arg) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)arg; uint32_t isr; uint32_t rsr; uint32_t tsr; uint32_t imr; uint32_t regval; uint32_t pending; uint32_t clrbits; /* Process pending Ethernet interrupts */ net_lock(); isr = zynq_getreg(priv, ZYNQ_GMAC_ISR); rsr = zynq_getreg(priv, ZYNQ_GMAC_RSR); tsr = zynq_getreg(priv, ZYNQ_GMAC_TSR); imr = zynq_getreg(priv, ZYNQ_GMAC_IMR); pending = isr & ~(imr | GMAC_INT_UNUSED); ninfo("isr: %08" PRIx32 " pending: %08" PRIx32 "\n", isr, pending); /* Check for the completion of a transmission. This should be done before * checking for received data (because receiving can cause another * transmission before we had a chance to handle the last one). * * ISR:TCOMP is set when a frame has been transmitted. Cleared on read. * TSR:COMP is set when a frame has been transmitted. Cleared by writing a * one to this bit. */ if ((pending & GMAC_INT_TCOMP) != 0 || (tsr & GMAC_TSR_TXCOMP) != 0) { /* A frame has been transmitted */ clrbits = GMAC_TSR_TXCOMP; /* Check for Retry Limit Exceeded (RLE) */ if ((tsr & GMAC_TSR_RLE) != 0) { /* Status RLE & Number of discarded buffers */ clrbits = GMAC_TSR_RLE | zynq_txinuse(priv); zynq_txreset(priv); nerr("ERROR: Retry Limit Exceeded TSR: %08" PRIx32 "\n", tsr); regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); regval |= GMAC_NCR_TXEN; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); } /* Check Collision Occurred (COL) */ if ((tsr & GMAC_TSR_COL) != 0) { nerr("ERROR: Collision occurred TSR: %08" PRIx32 "\n", tsr); clrbits |= GMAC_TSR_COL; } /* Check for Transmit Frame Corruption due to AHB error (TFC) */ if ((tsr & GMAC_TSR_TFC) != 0) { nerr("ERROR: Buffers exhausted mid-frame TSR: %08" PRIx32 "\n", tsr); clrbits |= GMAC_TSR_TFC; } /* Check for Transmit Underrun (UND) * * ISR:UND is set transmit DMA was not able to read data from memory, * either because the bus was not granted in time, because a not * OK hresp(bus error) was returned or because a used bit was read * midway through frame transmission. If this occurs, the * transmitter forces bad CRC. Cleared by writing a one to this bit. */ if ((tsr & GMAC_TSR_UND) != 0) { nerr("ERROR: Transmit Underrun TSR: %08" PRIx32 "\n", tsr); clrbits |= GMAC_TSR_UND; } /* Check for HRESP not OK */ if ((tsr & GMAC_TSR_HRESP) != 0) { nerr("ERROR: HRESP not OK: %08" PRIx32 "\n", tsr); clrbits |= GMAC_TSR_HRESP; } /* Check for Late Collitions (LCO) */ if ((tsr & GMAC_TSR_LCO) != 0) { nerr("ERROR: Late collision: %08" PRIx32 "\n", tsr); clrbits |= GMAC_TSR_LCO; } /* Clear status */ zynq_putreg(priv, ZYNQ_GMAC_TSR, clrbits); /* And handle the TX done event */ zynq_txdone(priv); } /* Check for the receipt of an RX packet. * * RXCOMP indicates that a packet has been received and stored in memory. * The RXCOMP bit is cleared whent he interrupt status register was read. * RSR:REC indicates that one or more frames have been received and placed * in memory. This indication is cleared by writing a one to this bit. */ if ((pending & GMAC_INT_RCOMP) != 0 || (rsr & GMAC_RSR_REC) != 0) { clrbits = GMAC_RSR_REC; /* Check for Receive Overrun. * * RSR:RXOVR will be set if the RX FIFO is not able to store the * receive frame due to a FIFO overflow, or if the receive status * was not taken at the end of the frame. This bit is also set in * DMA packet buffer mode if the packet buffer overflows. For DMA * operation, the buffer will be recovered if an overrun occurs. This * bit is cleared when set to 1. */ if ((rsr & GMAC_RSR_RXOVR) != 0) { nerr("ERROR: Receiver overrun RSR: %08" PRIx32 "\n", rsr); clrbits |= GMAC_RSR_RXOVR; } /* Check for buffer not available (BNA) * * RSR:BNA means that an attempt was made to get a new buffer and the * pointer indicated that it was owned by the processor. The DMA will * reread the pointer each time an end of frame is received until a * valid pointer is found. This bit is set following each descriptor * read attempt that fails, even if consecutive pointers are * unsuccessful and software has in the mean time cleared the status * flag. Cleared by writing a one to this bit. */ if ((rsr & GMAC_RSR_BNA) != 0) { nerr("ERROR: Buffer not available RSR: %08" PRIx32 "\n", rsr); clrbits |= GMAC_RSR_BNA; } /* Check for HRESP not OK (HNO) */ if ((rsr & GMAC_RSR_HNO) != 0) { nerr("ERROR: HRESP not OK: %08" PRIx32 "\n", rsr); clrbits |= GMAC_RSR_HNO; } /* Clear status */ zynq_putreg(priv, ZYNQ_GMAC_RSR, clrbits); /* Handle the received packet */ zynq_receive(priv); } #ifdef CONFIG_DEBUG_NET /* Check for PAUSE Frame received (PFRE). * * ISR:PFRE indicates that a pause frame has been received. Cleared on a * read. */ if ((pending & GMAC_INT_PFNZ) != 0) { nwarn("WARNING: Pause frame received\n"); } /* Check for Pause Time Zero (PTZ) * * ISR:PTZ is set Pause Time Zero */ if ((pending & GMAC_INT_PTZ) != 0) { nwarn("WARNING: Pause TO!\n"); } #endif net_unlock(); /* EMAC Errata section 41.3.1 */ if (isr & GMAC_INT_RXUBR) { regval = zynq_getreg(priv, ZYNQ_GMAC_NCR) & (~GMAC_NCR_RXEN); zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); zynq_putreg(priv, ZYNQ_GMAC_NCR, (regval | GMAC_NCR_RXEN)); } /* clear int status */ zynq_putreg(priv, ZYNQ_GMAC_ISR, isr); /* Re-enable Ethernet interrupts */ up_enable_irq(priv->irq); } /**************************************************************************** * Function: zynq_gmac_interrupt * * Description: * Hardware interrupt handler * * Input Parameters: * irq - Number of the IRQ that generated the interrupt * context - Interrupt register state save info (architecture-specific) * * Returned Value: * OK on success * * Assumptions: * ****************************************************************************/ static int zynq_gmac_interrupt(int irq, void *context, void *arg) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)arg; uint32_t tsr; /* Disable further Ethernet interrupts. Because Ethernet interrupts are * also disabled if the TX timeout event occurs, there can be no race * condition here. */ up_disable_irq(priv->irq); /* Check for the completion of a transmission. Careful: * * ISR:TCOMP is set when a frame has been transmitted. Cleared on read (so * we cannot read it here). * TSR:TXCOMP is set when a frame has been transmitted. Cleared by writing * a one to this bit. */ tsr = zynq_getreg(priv, ZYNQ_GMAC_TSR); if ((tsr & GMAC_TSR_TXCOMP) != 0) { /* If a TX transfer just completed, then cancel the TX timeout so * there will be no race condition between any subsequent timeout * expiration and the deferred interrupt processing. */ wd_cancel(&priv->txtimeout); } /* Schedule to perform the interrupt processing on the worker thread. */ work_queue(ETHWORK, &priv->irqwork, zynq_interrupt_work, priv, 0); return OK; } /**************************************************************************** * Function: zynq_txtimeout_work * * Description: * Perform TX timeout related work from the worker thread * * Input Parameters: * arg - The argument passed when work_queue() as called. * * Returned Value: * OK on success * * Assumptions: * Ethernet interrupts are disabled * ****************************************************************************/ static void zynq_txtimeout_work(void *arg) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)arg; nerr("ERROR: Timeout!\n"); /* Reset the hardware. Just take the interface down, then back up again. */ net_lock(); zynq_ifdown(&priv->dev); zynq_ifup(&priv->dev); /* Then poll the network for new XMIT data */ zynq_dopoll(priv); net_unlock(); } /**************************************************************************** * Function: zynq_txtimeout_expiry * * Description: * Our TX watchdog timed out. Called from the timer interrupt handler. * The last TX never completed. Reset the hardware and start again. * * Input Parameters: * arg - The argument * * Returned Value: * None * * Assumptions: * Global interrupts are disabled by the watchdog logic. * ****************************************************************************/ static void zynq_txtimeout_expiry(wdparm_t arg) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)arg; /* Disable further Ethernet interrupts. This will prevent some race * conditions with interrupt work. There is still a potential race * condition with interrupt work that is already queued and in progress. */ up_disable_irq(priv->irq); /* Schedule to perform the TX timeout processing on the worker thread. */ work_queue(ETHWORK, &priv->irqwork, zynq_txtimeout_work, priv, 0); } /**************************************************************************** * Function: zynq_ifup * * Description: * NuttX Callback: Bring up the GMAC interface when an IP address is * provided * * Input Parameters: * dev - Reference to the NuttX driver state structure * * Returned Value: * None * * Assumptions: * ****************************************************************************/ static int zynq_ifup(struct net_driver_s *dev) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; int ret; ninfo("Bringing up: %u.%u.%u.%u\n", ip4_addr1(dev->d_ipaddr), ip4_addr2(dev->d_ipaddr), ip4_addr3(dev->d_ipaddr), ip4_addr4(dev->d_ipaddr)); /* Configure the GMAC interface for normal operation. */ ninfo("Initialize the GMAC\n"); zynq_gmac_configure(priv); /* Set the MAC address (should have been configured while we were down) */ zynq_macaddress(priv); /* Initialize for PHY access */ ret = zynq_phyinit(priv); if (ret < 0) { nerr("ERROR: zynq_phyinit failed: %d\n", ret); return ret; } #ifdef CONFIG_ZYNQ_GMAC_AUTONEG /* Auto Negotiate, working in RMII mode */ ret = zynq_autonegotiate(priv); if (ret < 0) { nerr("ERROR: zynq_autonegotiate failed: %d\n", ret); return ret; } #else /* Just force the configured link speed */ zynq_linkspeed(priv); #endif /* Enable normal MAC operation */ ninfo("Enable normal operation\n"); /* Enable the GMAC interrupt */ priv->ifup = true; up_enable_irq(priv->irq); return OK; } /**************************************************************************** * Function: zynq_ifdown * * Description: * NuttX Callback: Stop the interface. * * Input Parameters: * dev - Reference to the NuttX driver state structure * * Returned Value: * None * * Assumptions: * ****************************************************************************/ static int zynq_ifdown(struct net_driver_s *dev) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; irqstate_t flags; ninfo("Taking the network down\n"); /* Disable the GMAC interrupt */ flags = enter_critical_section(); up_disable_irq(priv->irq); /* Cancel the TX timeout timers */ wd_cancel(&priv->txtimeout); /* Put the GMAC in its reset, non-operational state. This should be * a known configuration that will guarantee the zynq_ifup() always * successfully brings the interface back up. */ zynq_gmac_reset(priv); /* Mark the device "down" */ priv->ifup = false; leave_critical_section(flags); return OK; } /**************************************************************************** * Function: zynq_txavail_work * * Description: * Perform an out-of-cycle poll on the worker thread. * * Input Parameters: * arg - Reference to the NuttX driver state structure (cast to void*) * * Returned Value: * None * * Assumptions: * Called on the higher priority worker thread. * ****************************************************************************/ static void zynq_txavail_work(void *arg) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)arg; ninfo("ifup: %d\n", priv->ifup); /* Ignore the notification if the interface is not yet up */ net_lock(); if (priv->ifup) { /* Poll the network for new XMIT data */ zynq_dopoll(priv); } net_unlock(); } /**************************************************************************** * Function: zynq_txavail * * Description: * Driver callback invoked when new TX data is available. This is a * stimulus perform an out-of-cycle poll and, thereby, reduce the TX * latency. * * Input Parameters: * dev - Reference to the NuttX driver state structure * * Returned Value: * None * * Assumptions: * Called in normal user mode * ****************************************************************************/ static int zynq_txavail(struct net_driver_s *dev) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; /* Is our single work structure available? It may not be if there are * pending interrupt actions and we will have to ignore the Tx * availability action. */ if (work_available(&priv->pollwork)) { /* Schedule to serialize the poll on the worker thread. */ work_queue(ETHWORK, &priv->pollwork, zynq_txavail_work, priv, 0); } return OK; } /**************************************************************************** * Name: zynq_hashindx * * Description: * Cacuclate the hash address register index. The hash address register * is 64 bits long and takes up two locations in the memory map. The * destination address is reduced to a 6-bit index into the 64-bit Hash * Register using the following hash function: The hash function is an XOR * of every sixth bit of the destination address. * * ndx:05 = da:05 ^ da:11 ^ da:17 ^ da:23 ^ da:29 ^ da:35 ^ da:41 ^ da:47 * ndx:04 = da:04 ^ da:10 ^ da:16 ^ da:22 ^ da:28 ^ da:34 ^ da:40 ^ da:46 * ndx:03 = da:03 ^ da:09 ^ da:15 ^ da:21 ^ da:27 ^ da:33 ^ da:39 ^ da:45 * ndx:02 = da:02 ^ da:08 ^ da:14 ^ da:20 ^ da:26 ^ da:32 ^ da:38 ^ da:44 * ndx:01 = da:01 ^ da:07 ^ da:13 ^ da:19 ^ da:25 ^ da:31 ^ da:37 ^ da:43 * ndx:00 = da:00 ^ da:06 ^ da:12 ^ da:18 ^ da:24 ^ da:30 ^ da:36 ^ da:42 * * Where da:00 represents the least significant bit of the first byte * received and da:47 represents the most significant bit of the last byte * received. * * Input Parameters: * mac - The multicast address to be hashed * * Returned Value: * The 6-bit hash table index * ****************************************************************************/ #if defined(CONFIG_NET_MCASTGROUP) || defined(CONFIG_NET_ICMPv6) static unsigned int zynq_hashindx(const uint8_t *mac) { unsigned int ndx; /* Isolate: mac[0] * ... 05 04 03 02 01 00] */ ndx = mac[0]; /* Isolate: mac[1] mac[0] * ...11 10 09 08] [07 06 ... * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 */ ndx ^= (mac[1] << 2) | (mac[0] >> 6); /* Isolate: mac[2] mac[1] * ... 17 16] [15 14 13 12 ... * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 * XOR: 17 16 15 14 13 12 */ ndx ^= (mac[2] << 4) | (mac[1] >> 4); /* Isolate: mac[2] * [23 22 21 20 19 18 ... * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 * XOR: 17 16 15 14 13 12 * XOR: 23 22 21 20 19 18 */ ndx ^= (mac[2] >> 2); /* Isolate: mac[3] * ... 29 28 27 26 25 24] * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 * XOR: 17 16 15 14 13 12 * XOR: 23 22 21 20 19 18 * XOR: 29 28 27 26 25 24 */ ndx ^= mac[3]; /* Isolate: mac[4] mac[3] * ... 35 34 33 32] [31 30 ... * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 * XOR: 17 16 15 14 13 12 * XOR: 23 22 21 20 19 18 * XOR: 29 28 27 26 25 24 * XOR: 35 34 33 32 31 30 */ ndx ^= (mac[4] << 2) | (mac[3] >> 6); /* Isolate: mac[5] mac[4] * ... 41 40] [39 38 37 36 ... * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 * XOR: 17 16 15 14 13 12 * XOR: 23 22 21 20 19 18 * XOR: 29 28 27 26 25 24 * XOR: 35 34 33 32 31 30 * XOR: 41 40 39 38 37 36 */ ndx ^= (mac[5] << 4) | (mac[4] >> 4); /* Isolate: mac[5] * [47 46 45 44 43 42 ... * * Accumulate: 05 04 03 02 01 00 * XOR: 11 10 09 08 07 06 * XOR: 17 16 15 14 13 12 * XOR: 23 22 21 20 19 18 * XOR: 29 28 27 26 25 24 * XOR: 35 34 33 32 31 30 * XOR: 41 40 39 38 37 36 * XOR: 47 46 45 44 43 42 */ ndx ^= (mac[5] >> 2); /* Mask out the garbage bits and return the 6-bit index */ return ndx & 0x3f; } #endif /* CONFIG_NET_MCASTGROUP || CONFIG_NET_ICMPv6 */ /**************************************************************************** * Function: zynq_addmac * * Description: * NuttX Callback: Add the specified MAC address to the hardware multicast * address filtering * * Input Parameters: * dev - Reference to the NuttX driver state structure * mac - The MAC address to be added * * Returned Value: * None * * Assumptions: * ****************************************************************************/ #ifdef CONFIG_NET_MCASTGROUP static int zynq_addmac(struct net_driver_s *dev, const uint8_t *mac) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; uintptr_t regaddr; uint32_t regval; unsigned int ndx; unsigned int bit; UNUSED(priv); ninfo("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); /* Calculate the 6-bit has table index */ ndx = zynq_hashindx(mac); /* Add the multicast address to the hardware multicast hash table */ if (ndx >= 32) { regaddr = ZYNQ_GMAC_HRT; /* Hash Register Top [63:32] Register */ bit = 1 << (ndx - 32); /* Bit 0-31 */ } else { regaddr = ZYNQ_GMAC_HRB; /* Hash Register Bottom [31:0] Register */ bit = 1 << ndx; /* Bit 0-31 */ } regval = zynq_getreg(priv, regaddr); regval |= bit; zynq_putreg(priv, regaddr, regval); /* The unicast hash enable and the multicast hash enable bits in the * Network Configuration Register enable the reception of hash matched * frames: * * - A multicast match will be signalled if the multicast hash enable bit * is set, da:00 is logic 1 and the hash index points to a bit set in * the Hash Register. * - A unicast match will be signalled if the unicast hash enable bit is * set, da:00 is logic 0 and the hash index points to a bit set in the * Hash Register. */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCFGR); regval &= ~GMAC_NCFGR_UNIHEN; /* Disable unicast matching */ regval |= GMAC_NCFGR_MTIHEN; /* Enable multicast matching */ zynq_putreg(priv, ZYNQ_GMAC_NCFGR, regval); return OK; } #endif /**************************************************************************** * Function: zynq_rmmac * * Description: * NuttX Callback: Remove the specified MAC address from the hardware * multicast address filtering * * Input Parameters: * dev - Reference to the NuttX driver state structure * mac - The MAC address to be removed * * Returned Value: * None * * Assumptions: * ****************************************************************************/ #ifdef CONFIG_NET_MCASTGROUP static int zynq_rmmac(struct net_driver_s *dev, const uint8_t *mac) { struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; uint32_t regval; unsigned int regaddr1; unsigned int regaddr2; unsigned int ndx; unsigned int bit; UNUSED(priv); ninfo("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); /* Calculate the 6-bit has table index */ ndx = zynq_hashindx(mac); /* Remove the multicast address to the hardware multicast hast table */ if (ndx >= 32) { regaddr1 = ZYNQ_GMAC_HRT; /* Hash Register Top [63:32] Register */ regaddr2 = ZYNQ_GMAC_HRB; /* Hash Register Bottom [31:0] Register */ bit = 1 << (ndx - 32); /* Bit 0-31 */ } else { regaddr1 = ZYNQ_GMAC_HRB; /* Hash Register Bottom [31:0] Register */ regaddr2 = ZYNQ_GMAC_HRT; /* Hash Register Top [63:32] Register */ bit = 1 << ndx; /* Bit 0-31 */ } regval = zynq_getreg(priv, regaddr1); regval &= ~bit; zynq_putreg(priv, regaddr1, regval); /* The unicast hash enable and the multicast hash enable bits in the * Network Configuration Register enable the reception of hash matched * frames: * * - A multicast match will be signalled if the multicast hash enable bit * is set, da:00 is logic 1 and the hash index points to a bit set in * the Hash Register. * - A unicast match will be signalled if the unicast hash enable bit is * set, da:00 is logic 0 and the hash index points to a bit set in the * Hash Register. */ /* Are all multicast address matches disabled? */ if (regval == 0 && zynq_getreg(priv, regaddr2) == 0) { /* Yes.. disable all address matching */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCFGR); regval &= ~(GMAC_NCFGR_UNIHEN | GMAC_NCFGR_MTIHEN); zynq_putreg(priv, ZYNQ_GMAC_NCFGR, regval); } return OK; } #endif /**************************************************************************** * Function: zynq_ioctl * * Description: * Handles driver ioctl calls: * * SIOCMIINOTIFY - Set up to received notifications from PHY interrupting * events. * * SIOCGMIIPHY, SIOCGMIIREG, and SIOCSMIIREG: * Executes the SIOCxMIIxxx command and responds using the request struct * that must be provided as its 2nd parameter. * * When called with SIOCGMIIPHY it will get the PHY address for the device * and write it to the req->phy_id field of the request struct. * * When called with SIOCGMIIREG it will read a register of the PHY that is * specified using the req->reg_no struct field and then write its output * to the req->val_out field. * * When called with SIOCSMIIREG it will write to a register of the PHY * that is specified using the req->reg_no struct field and use * req->val_in as its input. * * Input Parameters: * dev - Ethernet device structure * cmd - SIOCxMIIxxx command code * arg - Request structure also used to return values * * Returned Value: Negated errno on failure. * * Assumptions: * ****************************************************************************/ #ifdef CONFIG_NETDEV_IOCTL static int zynq_ioctl(struct net_driver_s *dev, int cmd, unsigned long arg) { #ifdef CONFIG_NETDEV_PHY_IOCTL struct zynq_gmac_s *priv = (struct zynq_gmac_s *)dev->d_private; struct phy_s *phy = &priv->phy; #endif int ret; switch (cmd) { #ifdef CONFIG_NETDEV_PHY_IOCTL #ifdef CONFIG_ARCH_PHY_INTERRUPT case SIOCMIINOTIFY: /* Set up for PHY event notifications */ { struct mii_ioctl_notify_s *req = (struct mii_ioctl_notify_s *)((uintptr_t)arg); ret = phy_notify_subscribe(dev->d_ifname, req->pid, &req->event); if (ret == OK) { /* Enable PHY link up/down interrupts */ ret = zynq_phyintenable(priv); } } break; #endif case SIOCGMIIPHY: /* Get MII PHY address */ { struct mii_ioctl_data_s *req = (struct mii_ioctl_data_s *)((uintptr_t)arg); req->phy_id = phy->phyaddr; ret = OK; } break; case SIOCGMIIREG: /* Get register from MII PHY */ { struct mii_ioctl_data_s *req = (struct mii_ioctl_data_s *)((uintptr_t)arg); /* Enable the management port */ zynq_enablemdio(priv); /* Read from the requested register */ ret = zynq_phyread(priv, req->phy_id, req->reg_num, &req->val_out); /* Disable the management port */ zynq_disablemdio(priv); } break; case SIOCSMIIREG: /* Set register in MII PHY */ { struct mii_ioctl_data_s *req = (struct mii_ioctl_data_s *)((uintptr_t)arg); /* Enable the management port */ zynq_enablemdio(priv); /* Write to the requested register */ ret = zynq_phywrite(priv, req->phy_id, req->reg_num, req->val_in); /* Disable the management port */ zynq_disablemdio(priv); } break; #endif /* CONFIG_NETDEV_PHY_IOCTL */ default: ret = -ENOTTY; break; } return ret; } #endif /* CONFIG_NETDEV_IOCTL */ /**************************************************************************** * Function: zynq_phydump * * Description: * Dump the contents of PHY registers * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None * ****************************************************************************/ #if defined(CONFIG_DEBUG_NET) && defined(CONFIG_DEBUG_INFO) static void zynq_phydump(struct zynq_gmac_s *priv) { struct phy_s *phy = &priv->phy; uint16_t phyval; /* Enable management port */ zynq_enablemdio(priv); ninfo("GMII Registers (Address %02x)\n", phy->phyaddr); zynq_phyread(priv, phy->phyaddr, GMII_MCR, &phyval); ninfo(" MCR: %04x\n", phyval); zynq_phyread(priv, phy->phyaddr, GMII_MSR, &phyval); ninfo(" MSR: %04x\n", phyval); zynq_phyread(priv, phy->phyaddr, GMII_ADVERTISE, &phyval); ninfo(" ADVERTISE: %04x\n", phyval); zynq_phyread(priv, phy->phyaddr, GMII_LPA, &phyval); ninfo(" LPR: %04x\n", phyval); zynq_phyread(priv, phy->phyaddr, GMII_1000BTCR, &phyval); ninfo(" 1000BTCR: %04x\n", phyval); zynq_phyread(priv, phy->phyaddr, GMII_1000BTSR, &phyval); ninfo(" 1000BTSR: %04x\n", phyval); zynq_phyread(priv, phy->phyaddr, GMII_ESTATUS, &phyval); ninfo(" ESTATUS: %04x\n", phyval); /* Disable management port */ zynq_disablemdio(priv); } #endif /**************************************************************************** * Function: zynq_phyintenable * * Description: * Enable link up/down PHY interrupts. The interrupt protocol is like this: * * - Interrupt status is cleared when the interrupt is enabled. * - Interrupt occurs. Interrupt is disabled (at the processor level) when * is received. * - Interrupt status is cleared when the interrupt is re-enabled. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno (-ETIMEDOUT) on failure. * ****************************************************************************/ #if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT) static int zynq_phyintenable(struct zynq_gmac_s *priv) { struct phy_s *phy = &priv->phy; return -ENOSYS; } #endif /**************************************************************************** * Function: zynq_enablemdio * * Description: * Enable the management port * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None * ****************************************************************************/ static void zynq_enablemdio(struct zynq_gmac_s *priv) { uint32_t regval; uint32_t enables; /* Enable management port */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); enables = regval & (GMAC_NCR_RXEN | GMAC_NCR_TXEN); regval &= ~(GMAC_NCR_RXEN | GMAC_NCR_TXEN); regval |= GMAC_NCR_MPE; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); regval |= enables; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); } /**************************************************************************** * Function: zynq_disablemdio * * Description: * Disable the management port * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None * ****************************************************************************/ static void zynq_disablemdio(struct zynq_gmac_s *priv) { uint32_t regval; uint32_t enables; /* Disable management port */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); enables = regval & (GMAC_NCR_RXEN | GMAC_NCR_TXEN); regval &= ~(GMAC_NCR_RXEN | GMAC_NCR_TXEN); zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); regval &= ~GMAC_NCR_MPE; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); regval |= enables; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); } /**************************************************************************** * Function: zynq_phywait * * Description: * Wait for the PHY to become IDLE * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno (-ETIMEDOUT) on failure. * ****************************************************************************/ static int zynq_phywait(struct zynq_gmac_s *priv) { volatile unsigned int retries; /* Loop for the configured number of attempts */ for (retries = 0; retries < PHY_RETRY_MAX; retries++) { /* Is the PHY IDLE */ if ((zynq_getreg(priv, ZYNQ_GMAC_NSR) & GMAC_NSR_IDLE) != 0) { return OK; } } return -ETIMEDOUT; } /**************************************************************************** * Function: zynq_phyreset * * Description: * Reset the PHY * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * ****************************************************************************/ static int zynq_phyreset(struct zynq_gmac_s *priv) { struct phy_s *phy = &priv->phy; uint16_t mcr; int timeout; int ret; ninfo(" zynq_phyreset\n"); /* Enable management port */ zynq_enablemdio(priv); /* Reset the PHY */ ret = zynq_phywrite(priv, phy->phyaddr, GMII_MCR, GMII_MCR_RESET); if (ret < 0) { nerr("ERROR: zynq_phywrite failed: %d\n", ret); } /* Wait for the PHY reset to complete */ ret = -ETIMEDOUT; for (timeout = 0; timeout < 10; timeout++) { mcr = GMII_MCR_RESET; int result = zynq_phyread(priv, phy->phyaddr, GMII_MCR, &mcr); if (result < 0) { nerr("ERROR: Failed to read the MCR register: %d\n", ret); ret = result; } else if ((mcr & GMII_MCR_RESET) == 0) { ret = OK; break; } } /* Disable management port */ zynq_disablemdio(priv); return ret; } /**************************************************************************** * Function: zynq_phyfind * * Description: * Verify the PHY address and, if it is bad, try to one that works. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * ****************************************************************************/ static int zynq_phyfind(struct zynq_gmac_s *priv, uint8_t *phyaddr) { struct phy_s *phy = &priv->phy; uint32_t phyid; uint16_t phyval; uint8_t candidate; unsigned int offset; int ret = -ESRCH; ninfo("Find a valid PHY address\n"); /* Enable management port */ zynq_enablemdio(priv); /* Check initial candidate address */ candidate = *phyaddr; zynq_phyread(priv, candidate, GMII_PHYID1, &phyval); phyid = phyval << 16; zynq_phyread(priv, candidate, GMII_PHYID2, &phyval); phyid |= phyval; if (phyid == phy->uid) { *phyaddr = candidate; ret = OK; } /* The current address does not work... try another */ else { nerr("ERROR: zynq_phyread failed for PHY address %02x: %d\n", candidate, ret); for (offset = 0; offset < 32; offset++) { /* Get the next candidate PHY address */ candidate = (candidate + 1) & 0x1f; /* Try reading the PHY ID from the candidate PHY address */ zynq_phyread(priv, candidate, GMII_PHYID1, &phyval); phyid = phyval << 16; zynq_phyread(priv, candidate, GMII_PHYID2, &phyval); phyid |= phyval; if (phyid == phy->uid) { *phyaddr = candidate; ninfo(" Vendor Model Number: %04x\n", (phyval & GMII_PHYID2_MODEL_MASK) >> GMII_PHYID2_MODEL_SHIFT); ninfo(" Model Revision Number: %04x\n", (phyval & GMII_PHYID2_REV_MASK) >> GMII_PHYID2_REV_SHIFT); ret = OK; break; } } } if (ret == OK) { ninfo(" PHYID: %04x PHY addr: %d\n", phyid, candidate); *phyaddr = candidate; } /* Disable management port */ zynq_disablemdio(priv); return ret; } /**************************************************************************** * Function: zynq_phyread * * Description: * Read a PHY register. * * Input Parameters: * priv - A reference to the private driver state structure * phyaddr - The PHY device address * regaddr - The PHY register address * phyval - The location to return the 16-bit PHY register value. * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * ****************************************************************************/ int zynq_phyread(struct zynq_gmac_s *priv, uint8_t phyaddr, uint8_t regaddr, uint16_t *phyval) { uint32_t regval; int ret; /* Make sure that the PHY is idle */ ret = zynq_phywait(priv); if (ret < 0) { nerr("ERROR: zynq_phywait failed: %d\n", ret); return ret; } /* Write the PHY Maintenance register */ regval = GMAC_MAN_DATA(0) | GMAC_MAN_WTN | GMAC_MAN_REGA(regaddr) | GMAC_MAN_PHYA(phyaddr) | GMAC_MAN_READ | GMAC_MAN_CLTTO; zynq_putreg(priv, ZYNQ_GMAC_MAN, regval); /* Wait until the PHY is again idle */ ret = zynq_phywait(priv); if (ret < 0) { nerr("ERROR: zynq_phywait failed: %d\n", ret); return ret; } /* Return the PHY data */ *phyval = (uint16_t)(zynq_getreg(priv, ZYNQ_GMAC_MAN) & GMAC_MAN_DATA_MASK); return OK; } /**************************************************************************** * Function: zynq_phywrite * * Description: * Write to a PHY register. * * Input Parameters: * priv - A reference to the private driver state structure * phyaddr - The PHY device address * regaddr - The PHY register address * phyval - The 16-bit value to write to the PHY register. * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * ****************************************************************************/ int zynq_phywrite(struct zynq_gmac_s *priv, uint8_t phyaddr, uint8_t regaddr, uint16_t phyval) { uint32_t regval; int ret; /* Make sure that the PHY is idle */ ret = zynq_phywait(priv); if (ret < 0) { nerr("ERROR: zynq_phywait failed: %d\n", ret); return ret; } /* Write the PHY Maintenance register */ regval = GMAC_MAN_DATA(phyval) | GMAC_MAN_WTN | GMAC_MAN_REGA(regaddr) | GMAC_MAN_PHYA(phyaddr) | GMAC_MAN_WRITE | GMAC_MAN_CLTTO; zynq_putreg(priv, ZYNQ_GMAC_MAN, regval); /* Wait until the PHY is again IDLE */ ret = zynq_phywait(priv); if (ret < 0) { nerr("ERROR: zynq_phywait failed: %d\n", ret); return ret; } return OK; } /**************************************************************************** * Function: zynq_autonegotiate * * Description: * Autonegotiate speed and duplex. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno on failure. * ****************************************************************************/ #ifdef CONFIG_ZYNQ_GMAC_AUTONEG static int zynq_autonegotiate(struct zynq_gmac_s *priv) { struct phy_s *phy = &priv->phy; uint32_t regval; uint32_t ncr; uint32_t linkmode; uint16_t phyval; uint16_t advertise; uint16_t lpa; uint16_t btcr; uint16_t btsr; int timeout; int ret; /* Enable management port */ zynq_enablemdio(priv); /* Set the Auto_negotiation Advertisement Register, MII advertising for * Next page 100BaseTxFD and HD, 10BaseTFD and HD, IEEE 802.3 */ advertise = GMII_ADVERTISE_100BASETXFULL | GMII_ADVERTISE_100BASETXHALF | GMII_ADVERTISE_10BASETXFULL | GMII_ADVERTISE_10BASETXHALF | GMII_ADVERTISE_8023; ret = zynq_phywrite(priv, phy->phyaddr, GMII_ADVERTISE, advertise); if (ret < 0) { nerr("ERROR: Failed to write ADVERTISE register\n"); goto errout; } /* Modify the 1000Base-T control register to advertise 1000Base-T full * and half duplex support. */ ret = zynq_phyread(priv, phy->phyaddr, GMII_1000BTCR, &btcr); if (ret < 0) { nerr("ERROR: Failed to read 1000BTCR register: %d\n", ret); goto errout; } btcr |= GMII_1000BTCR_1000BASETFULL | GMII_1000BTCR_1000BASETHALF; ret = zynq_phywrite(priv, phy->phyaddr, GMII_1000BTCR, btcr); if (ret < 0) { nerr("ERROR: Failed to write 1000BTCR register: %d\n", ret); goto errout; } /* Restart Auto_negotiation */ ret = zynq_phyread(priv, phy->phyaddr, GMII_MCR, &phyval); if (ret < 0) { nerr("ERROR: Failed to read MCR register: %d\n", ret); goto errout; } phyval |= GMII_MCR_ANRESTART; ret = zynq_phywrite(priv, phy->phyaddr, GMII_MCR, phyval); if (ret < 0) { nerr("ERROR: Failed to write MCR register: %d\n", ret); goto errout; } ninfo(" MCR: 0x%X\n", phyval); /* Wait for autonegotiation to complete */ timeout = 0; for (; ; ) { ret = zynq_phyread(priv, phy->phyaddr, GMII_MSR, &phyval); if (ret < 0) { nerr("ERROR: Failed to read MSR register: %d\n", ret); goto errout; } /* Check for completion of autonegotiation */ if ((phyval & GMII_MSR_ANEGCOMPLETE) != 0) { /* Yes.. break out of the loop */ ninfo("AutoNegotiate complete\n"); break; } /* No.. check for a timeout */ if (++timeout >= PHY_RETRY_MAX) { nerr("ERROR: TimeOut\n"); zynq_phydump(priv); ret = -ETIMEDOUT; goto errout; } } /* Setup the GMAC local link speed */ linkmode = 0; /* 10Base-T Half-Duplex */ timeout = 0; for (; ; ) { ret = zynq_phyread(priv, phy->phyaddr, GMII_1000BTSR, &btsr); if (ret < 0) { nerr("ERROR: Failed to read 1000BTSR register: %d\n", ret); goto errout; } /* Setup the GMAC link speed */ if ((btsr & GMII_1000BTSR_LP1000BASETFULL) != 0 && (btcr & GMII_1000BTCR_1000BASETHALF) != 0) { /* Set RGMII for 1000BaseTX and Full Duplex */ linkmode = (GMAC_NCFGR_FD | GMAC_NCFGR_GBE); mpsoc_clk_rate_set(gem0_ref + priv->num, ZYNQ_GEM_FREQUENCY_1000); break; } else if ((btsr & GMII_1000BTSR_LP1000BASETHALF) != 0 && (btcr & GMII_1000BTCR_1000BASETFULL) != 0) { /* Set RGMII for 1000BaseT and Half Duplex */ linkmode = GMAC_NCFGR_GBE; mpsoc_clk_rate_set(gem0_ref + priv->num, ZYNQ_GEM_FREQUENCY_1000); break; } /* Get the Autonegotiation Link partner base page */ ret = zynq_phyread(priv, phy->phyaddr, GMII_LPA, &lpa); if (ret < 0) { nerr("ERROR: Failed to read LPA register: %d\n", ret); goto errout; } /* Setup the GMAC link speed */ if ((advertise & GMII_ADVERTISE_100BASETXFULL) != 0 && (lpa & GMII_LPA_100BASETXFULL) != 0) { /* Set RGMII for 100BaseTX and Full Duplex */ linkmode = (GMAC_NCFGR_SPD | GMAC_NCFGR_FD); mpsoc_clk_rate_set(gem0_ref + priv->num, ZYNQ_GEM_FREQUENCY_100); break; } else if ((advertise & GMII_ADVERTISE_10BASETXFULL) != 0 && (lpa & GMII_LPA_10BASETXFULL) != 0) { /* Set RGMII for 10BaseT and Full Duplex */ linkmode = GMAC_NCFGR_FD; mpsoc_clk_rate_set(gem0_ref + priv->num, ZYNQ_GEM_FREQUENCY_10); break; } else if ((advertise & GMII_ADVERTISE_100BASETXHALF) != 0 && (lpa & GMII_LPA_100BASETXHALF) != 0) { /* Set RGMII for 100BaseTX and half Duplex */ linkmode = GMAC_NCFGR_SPD; mpsoc_clk_rate_set(gem0_ref + priv->num, ZYNQ_GEM_FREQUENCY_100); break; } else if ((advertise & GMII_ADVERTISE_10BASETXHALF) != 0 && (lpa & GMII_LPA_10BASETXHALF) != 0) { /* Set RGMII for 10BaseT and half Duplex */ mpsoc_clk_rate_set(gem0_ref + priv->num, ZYNQ_GEM_FREQUENCY_10); break; } /* Check for a timeout */ if (++timeout >= PHY_RETRY_MAX) { nerr("ERROR: TimeOut\n"); zynq_phydump(priv); ret = -ETIMEDOUT; goto errout; } } /* Disable RX and TX momentarily */ ncr = zynq_getreg(priv, ZYNQ_GMAC_NCR); zynq_putreg(priv, ZYNQ_GMAC_NCR, ncr & ~(GMAC_NCR_RXEN | GMAC_NCR_TXEN)); /* Modify the NCFGR register based on the negotiated speed and duplex */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCFGR); regval &= ~(GMAC_NCFGR_SPD | GMAC_NCFGR_FD | GMAC_NCFGR_GBE); regval |= linkmode; zynq_putreg(priv, ZYNQ_GMAC_NCFGR, regval); zynq_putreg(priv, ZYNQ_GMAC_NCR, ncr); /* Enable RGMII enable */ regval = zynq_getreg(priv, ZYNQ_GMAC_UR); regval |= GMAC_UR_RGMII; zynq_putreg(priv, ZYNQ_GMAC_UR, regval); errout: /* Disable the management port */ zynq_disablemdio(priv); return ret; } #endif /**************************************************************************** * Function: zynq_linkspeed * * Description: * If autonegotiation is not configured, then just force the configuration * mode * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None * ****************************************************************************/ #ifndef CONFIG_ZYNQ_GMAC_AUTONEG statoc void zynq_linkspeed(struct zynq_gmac_s *priv) { uint32_t regval; uint32_t ncr; /* Disable RX and TX momentarily */ ncr = zynq_getreg(priv, ZYNQ_GMAC_NCR); zynq_putreg(priv, ZYNQ_GMAC_NCR, ncr & ~(GMAC_NCR_RXEN | GMAC_NCR_TXEN)); /* Modify the NCFGR register based on the configured speed and duplex */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCFGR); regval &= ~(GMAC_NCFGR_SPD | GMAC_NCFGR_FD | GMAC_NCFGR_GBE); #ifdef ZYNQ_GMAC_ETHFD regval |= GMAC_NCFGR_FD; #endif #if defined(ZYNQ_GMAC_ETH100MBPS) regval |= GMAC_NCFGR_SPD; #elif defined(ZYNQ_GMAC_ETH1000MBPS) */ regval |= GMAC_NCFGR_GBE; #endif zynq_puttreg(priv, ZYNQ_GMAC_NCFGR, regval); zynq_putreg(priv, ZYNQ_GMAC_NCR, ncr); } #endif /**************************************************************************** * Function: zynq_mdcclock * * Description: * Configure the MDC clocking * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None * ****************************************************************************/ static void zynq_mdcclock(struct zynq_gmac_s *priv) { uint32_t ncfgr; uint32_t ncr; uint32_t mck; /* Disable RX and TX momentarily */ ncr = zynq_getreg(priv, ZYNQ_GMAC_NCR); zynq_putreg(priv, ZYNQ_GMAC_NCR, ncr & ~(GMAC_NCR_RXEN | GMAC_NCR_TXEN)); /* Modify the NCFGR register based on the configured board MCK frequency */ ncfgr = zynq_getreg(priv, ZYNQ_GMAC_NCFGR); ncfgr &= ~GMAC_NCFGR_CLK_MASK; mck = mpsoc_clk_rate_get(gem0_ref + priv->num); DEBUGASSERT(mck <= 240000000); if (mck <= 20000000) { ncfgr |= GMAC_NCFGR_CLK_DIV8; /* MCK divided by 8 (MCK up to 20 MHz) */ } else if (mck <= 40000000) { ncfgr |= GMAC_NCFGR_CLK_DIV16; /* MCK divided by 16 (MCK up to 40 MHz) */ } else if (mck <= 80000000) { ncfgr |= GMAC_NCFGR_CLK_DIV32; /* MCK divided by 32 (MCK up to 80 MHz) */ } else if (mck <= 120000000) { ncfgr |= GMAC_NCFGR_CLK_DIV48; /* MCK divided by 48 (MCK up to 120 MHz) */ } else if (mck <= 160000000) { ncfgr |= GMAC_NCFGR_CLK_DIV64; /* MCK divided by 64 (MCK up to 160 MHz) */ } else /* if (mck <= 240000000) */ { ncfgr |= GMAC_NCFGR_CLK_DIV96; /* MCK divided by 64 (MCK up to 240 MHz) */ } zynq_putreg(priv, ZYNQ_GMAC_NCFGR, ncfgr); /* Restore RX and TX enable settings */ zynq_putreg(priv, ZYNQ_GMAC_NCR, ncr); } /**************************************************************************** * Function: zynq_phyinit * * Description: * Configure the PHY and determine the link speed/duplex. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno on failure. * ****************************************************************************/ static int zynq_phyinit(struct zynq_gmac_s *priv) { struct phy_s *phy = &priv->phy; int ret; /* Configure PHY clocking */ zynq_mdcclock(priv); /* Check the PHY Address */ phy->phyaddr = CONFIG_ZYNQ_GMAC_PHYADDR; ret = zynq_phyfind(priv, &phy->phyaddr); if (ret < 0) { nerr("ERROR: zynq_phyfind failed: %d\n", ret); return ret; } /* We have a PHY address. Reset the PHY */ zynq_phyreset(priv); /* Enable management port */ zynq_enablemdio(priv); phy->config(priv); /* Disable management port */ zynq_disablemdio(priv); return OK; } /**************************************************************************** * Function: zynq_txreset * * Description: * Reset the transmit logic * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None. * * Assumptions: * ****************************************************************************/ static void zynq_txreset(struct zynq_gmac_s *priv) { uint8_t *txbuffer = priv->txbuffer; struct gmac_txdesc_s *txdesc = priv->txdesc; uintptr_t bufaddr; uint32_t regval; int ndx; /* Disable TX */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); regval &= ~GMAC_NCR_TXEN; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); /* Configure the TX descriptors. */ priv->txhead = 0; priv->txtail = 0; for (ndx = 0; ndx < CONFIG_ZYNQ_GMAC_NTXBUFFERS; ndx++) { bufaddr = (uintptr_t)(&(txbuffer[ndx * GMAC_TX_UNITSIZE])); /* Set the buffer address and mark the descriptor as in used by * firmware. */ txdesc[ndx].addr = (uint32_t)bufaddr; txdesc[ndx].status = GMACTXD_STA_USED; } /* Mark the final descriptor in the list */ txdesc[CONFIG_ZYNQ_GMAC_NTXBUFFERS - 1].status = GMACTXD_STA_USED | GMACTXD_STA_WRAP; txdesc[ndx].status = GMACTXD_STA_USED | GMACTXD_STA_WRAP | GMACTXD_STA_LAST; txdesc[ndx].addr = 0; /* Flush the entire TX descriptor table to RAM */ up_clean_dcache((uintptr_t)txdesc, (uintptr_t)txdesc + (CONFIG_ZYNQ_GMAC_NTXBUFFERS + 1) * sizeof(struct gmac_txdesc_s)); /* Set the Transmit Buffer Queue Base Register */ zynq_putreg(priv, ZYNQ_GMAC_TBQB, (uintptr_t)txdesc); zynq_putreg(priv, ZYNQ_GMAC_TBQBAPQ0, (uintptr_t)txdesc + CONFIG_ZYNQ_GMAC_NTXBUFFERS * sizeof(struct gmac_txdesc_s)); } /**************************************************************************** * Function: zynq_rxreset * * Description: * Reset the receive logic * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None. * * Assumptions: * ****************************************************************************/ static void zynq_rxreset(struct zynq_gmac_s *priv) { struct gmac_rxdesc_s *rxdesc = priv->rxdesc; uint8_t *rxbuffer = priv->rxbuffer; uintptr_t bufaddr; uint32_t regval; int ndx; /* Disable RX */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); regval &= ~GMAC_NCR_RXEN; zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); /* Configure the RX descriptors. */ priv->rxndx = 0; for (ndx = 0; ndx < CONFIG_ZYNQ_GMAC_NRXBUFFERS; ndx++) { bufaddr = (uintptr_t)(&(rxbuffer[ndx * GMAC_RX_UNITSIZE])); DEBUGASSERT((bufaddr & ~GMACRXD_ADDR_MASK) == 0); /* Set the buffer address and remove GMACRXD_ADDR_OWNER and * GMACRXD_ADDR_WRAP. */ rxdesc[ndx].addr = (uint32_t)bufaddr; rxdesc[ndx].status = 0; } /* Mark the final descriptor in the list */ rxdesc[CONFIG_ZYNQ_GMAC_NRXBUFFERS - 1].addr |= GMACRXD_ADDR_WRAP; rxdesc[ndx].status = 0; rxdesc[ndx].addr = GMACRXD_ADDR_WRAP | GMACRXD_ADDR_OWNER; /* Flush the entire RX descriptor table to RAM */ up_clean_dcache((uintptr_t)rxdesc, (uintptr_t)rxdesc + (CONFIG_ZYNQ_GMAC_NRXBUFFERS + 1)* sizeof(struct gmac_rxdesc_s)); /* Set the Receive Buffer Queue Base Register */ zynq_putreg(priv, ZYNQ_GMAC_RBQB, (uintptr_t)rxdesc); zynq_putreg(priv, ZYNQ_GMAC_RBQBAPQ0, (uintptr_t)rxdesc + CONFIG_ZYNQ_GMAC_NRXBUFFERS * sizeof(struct gmac_rxdesc_s)); } /**************************************************************************** * Function: zynq_gmac_reset * * Description: * Reset the GMAC block. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * None. * * Assumptions: * ****************************************************************************/ static void zynq_gmac_reset(struct zynq_gmac_s *priv) { #ifdef CONFIG_NETDEV_PHY_IOCTL uint16_t regval; /* We are supporting PHY IOCTLs, then do not reset the MAC. If we do, * then we cannot communicate with the PHY. So, instead, just disable * interrupts, cancel timers, and disable TX and RX. */ zynq_putreg(priv, ZYNQ_GMAC_IDR, GMAC_INT_ALL); /* Reset RX and TX logic */ zynq_rxreset(priv); zynq_txreset(priv); /* Disable Rx and Tx, plus the statistics registers. */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); regval &= ~(GMAC_NCR_RXEN | GMAC_NCR_TXEN | GMAC_NCR_WESTAT); zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); #else /* Disable all GMAC interrupts */ zynq_putreg(priv, ZYNQ_GMAC_IDR, GMAC_INT_ALL); /* Reset RX and TX logic */ zynq_rxreset(priv); zynq_txreset(priv); /* Make sure that RX and TX are disabled; clear statistics registers */ zynq_putreg(priv, ZYNQ_GMAC_NCR, GMAC_NCR_CLRSTAT); #endif } /**************************************************************************** * Function: zynq_macaddress * * Description: * Configure the selected MAC address. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * ****************************************************************************/ static void zynq_macaddress(struct zynq_gmac_s *priv) { struct net_driver_s *dev = &priv->dev; uint32_t regval; ninfo("%s MAC: %02x:%02x:%02x:%02x:%02x:%02x\n", dev->d_ifname, dev->d_mac.ether.ether_addr_octet[0], dev->d_mac.ether.ether_addr_octet[1], dev->d_mac.ether.ether_addr_octet[2], dev->d_mac.ether.ether_addr_octet[3], dev->d_mac.ether.ether_addr_octet[4], dev->d_mac.ether.ether_addr_octet[5]); /* Set the MAC address */ regval = (uint32_t)dev->d_mac.ether.ether_addr_octet[0] | (uint32_t)dev->d_mac.ether.ether_addr_octet[1] << 8 | (uint32_t)dev->d_mac.ether.ether_addr_octet[2] << 16 | (uint32_t)dev->d_mac.ether.ether_addr_octet[3] << 24; zynq_putreg(priv, ZYNQ_GMAC_SAB1, regval); regval = (uint32_t)dev->d_mac.ether.ether_addr_octet[4] | (uint32_t)dev->d_mac.ether.ether_addr_octet[5] << 8; zynq_putreg(priv, ZYNQ_GMAC_SAT1, regval); } /**************************************************************************** * Function: zynq_gmac_configure * * Description: * Configure the GMAC interface for normal operation. * * Input Parameters: * priv - A reference to the private driver state structure * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * ****************************************************************************/ static int zynq_gmac_configure(struct zynq_gmac_s *priv) { uint32_t regval; ninfo("Entry\n"); /* Disable TX, RX, clear statistics. Disable all interrupts. */ zynq_putreg(priv, ZYNQ_GMAC_NCR, GMAC_NCR_CLRSTAT); zynq_putreg(priv, ZYNQ_GMAC_IDR, GMAC_INT_ALL); /* Clear all status bits in the receive status register. */ regval = (GMAC_RSR_RXOVR | GMAC_RSR_REC | GMAC_RSR_BNA | GMAC_RSR_HNO); zynq_putreg(priv, ZYNQ_GMAC_RSR, regval); /* Clear all status bits in the transmit status register */ regval = GMAC_TSR_UBR | GMAC_TSR_COL | GMAC_TSR_RLE | GMAC_TSR_TXGO | GMAC_TSR_TFC | GMAC_TSR_TXCOMP | GMAC_TSR_UND | GMAC_TSR_HRESP | GMAC_TSR_LCO; zynq_putreg(priv, ZYNQ_GMAC_TSR, regval); /* Clear any pending interrupts */ regval = zynq_getreg(priv, ZYNQ_GMAC_ISR); zynq_putreg(priv, ZYNQ_GMAC_ISR, regval); /* Initial configuration: * * SPD = 0 : Assuming 1000Base-T full duplex * FD = 1 : Assuming 1000Base-T full duplex * DNVLAN = 0 : Don't discard non-VLAN frames * JFRAME = 0 : Disable jumbo frames * CAF : Depends on CONFIG_NET_PROMISCUOUS * NBC : Depends on CONFIG_ZYNQ_GMAC_NBC * MTIHEN = 0 : Multicast hash disabled * UNIHEN = 0 : Unicast hash disabled * MAXFS = 0 : Disable receive 1536 byte frames * GBE = 1 : Assuming 1000Base-T full duplex * RTY = 0 : Disable retry test * PEN = 1 : Pause frames disabled * RXBUFO = 0 : No receive buffer offset * RXBUFO = 2 : 20250118 * LFERD = 0 : No length field error discard * RFCS = 1 : Remove FCS * CLK = 4 : Assuming MCK <= 160MHz * DBW = 1 : 64-bit data bus with * DCPF = 0 : Copy of pause frames not disabled * RXCOEN = 0 : RX checksum offload disabled * EFRHD = 0 : Disable frames received in half duple * IRXFCS = 0 : Disable ignore RX FCX * IPGSEN = 0 : IP stretch disabled * RXBP = 0 : Receive bad pre-ambled disabled * IRXER = 0 : Disable ignore IPG GXER */ regval = GMAC_NCFGR_FD | GMAC_NCFGR_GBE | GMAC_NCFGR_PEN | GMAC_NCFGR_RFCS | GMAC_NCFGR_CLK_DIV64 | GMAC_NCFGR_DBW_64; #ifdef CONFIG_NET_PROMISCUOUS regval |= GMAC_NCFGR_CAF; #endif #ifdef CONFIG_ZYNQ_GMAC_NBC regval |= GMAC_NCFGR_NBC; #endif zynq_putreg(priv, ZYNQ_GMAC_NCFGR, regval); /* DMA control config */ regval = zynq_getreg(priv, ZYNQ_GMAC_DCFGR); /* DMA receive buffer size in external AMBA (AHB/AXI) system memory */ regval &= ~GMAC_DCFGR_DRBS_MASK; /* The value is defined in multiples of 64 bytes */ regval |= GMAC_DCFGR_DRBS(GMAC_RX_UNITSIZE / 64); regval &= ~GMAC_DCFGR_ESPA; #ifdef CDNS_TX_CSUM_OFFLOAD regval |= GMAC_DCFGR_TXCOEN; #endif zynq_putreg(priv, ZYNQ_GMAC_DCFGR, regval); /* Reset TX and RX */ zynq_rxreset(priv); zynq_txreset(priv); /* Enable Rx and Tx, plus the statistics registers. */ regval = zynq_getreg(priv, ZYNQ_GMAC_NCR); regval |= (GMAC_NCR_RXEN | GMAC_NCR_TXEN | GMAC_NCR_WESTAT); zynq_putreg(priv, ZYNQ_GMAC_NCR, regval); /* Setup the interrupts for TX events, RX events, and error events */ regval = GMAC_INT_MFS | GMAC_INT_RCOMP | GMAC_INT_RXUBR | GMAC_INT_TXUBR | GMAC_INT_TUR | GMAC_INT_RLEX | GMAC_INT_TFC | GMAC_INT_TCOMP | GMAC_INT_ROVR | GMAC_INT_HRESP | GMAC_INT_PFNZ | GMAC_INT_PTZ | GMAC_INT_PFTR | GMAC_INT_EXINT | GMAC_INT_DRQFR | GMAC_INT_SFR | GMAC_INT_DRQFT | GMAC_INT_SFT | GMAC_INT_PDRQFR | GMAC_INT_PDRSFR | GMAC_INT_PDRQFT | GMAC_INT_PDRSFT; zynq_putreg(priv, ZYNQ_GMAC_IER, regval); return OK; } /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Function: zynq_gmac_initialize * * Description: * Initialize the GMAC driver. * * Input Parameters: * intf - In the case where there are multiple GMACs, this value * identifies which GMAC is to be initialized. * * Returned Value: * OK on success; Negated errno on failure. * * Assumptions: * Called very early in the initialization sequence. * ****************************************************************************/ int zynq_gmac_initialize(int intf) { struct zynq_gmac_s *priv; int ret; /* Get the interface structure associated with this interface number. */ priv = &g_gmac[intf]; /* Used to recover private state from dev */ priv->dev.d_private = &g_gmac[intf]; /* Allocate buffers */ ret = zynq_buffer_initialize(priv); if (ret < 0) { nerr("ERROR: zynq_buffer_initialize failed: %d\n", ret); return ret; } /* Attach the IRQ to the driver. It will not be enabled at the AIC until * the interface is in the 'up' state. */ ret = irq_attach(priv->irq, zynq_gmac_interrupt, priv); if (ret < 0) { nerr("ERROR: Failed to attach the handler to the IRQ%d\n", priv->irq); return ret; } /* Perform any necessary, one-time, board-specific PHY initialization */ #ifdef CONFIG_ZYNQ_ENET_PHYINIT /* Initialize for PHY access */ ret = zynq_phy_boardinitialize(priv); if (ret < 0) { nerr("ERROR: Failed to initialize the PHY: %d\n", ret); return ret; } #endif /* Put the interface in the down state (disabling clocking again). */ ret = zynq_ifdown(&priv->dev); if (ret < 0) { nerr("ERROR: Failed to put the interface in the down state: %d\n", ret); return ret; } /* Register the device with the OS so that socket IOCTLs can be performed */ ret = netdev_register(&priv->dev, NET_LL_ETHERNET); if (ret < 0) { nerr("ERROR: netdev_register() failed: %d\n", ret); } return ret; } #endif /* CONFIG_ZYNQ_ENET */ /**************************************************************************** * Name: arm_netinitialize * * Description: * Initialize the first network interface. If there are more than one * interface in the chip, then board-specific logic will have to provide * this function to determine which, if any, Ethernet controllers should * be initialized. * ****************************************************************************/ #ifndef CONFIG_NETDEV_LATEINIT void arm64_netinitialize(void) { #if defined(CONFIG_ZYNQ_ENET) int i; /* Initialize all IFs */ for (i = 0; i < nitems(g_gmac); i++) { zynq_gmac_initialize(i); } #endif /* CONFIG_ZYNQ_ENET */ } #endif /* !CONFIG_NETDEV_LATEINIT */ #endif /* CONFIG_NET */