* arch/arm/src/samv7/sam_emac.c
*
* 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>
#if defined(CONFIG_DEBUG_FEATURES) && defined(CONFIG_SAMV7_EMAC_DEBUG)
# undef CONFIG_DEBUG_NET
# define CONFIG_DEBUG_NET 1
#endif
#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/wdog.h>
#include <nuttx/kmalloc.h>
#include <nuttx/wqueue.h>
#include <nuttx/spinlock.h>
#include <nuttx/net/mii.h>
#include <nuttx/net/ip.h>
#include <nuttx/net/netdev.h>
#include <nuttx/net/phy.h>
#ifdef CONFIG_NET_PKT
# include <nuttx/net/pkt.h>
#endif
#include <arch/samv7/chip.h>
#include "arm_internal.h"
#include "hardware/sam_pinmap.h"
#include "hardware/sam_chipid.h"
#include "sam_gpio.h"
#include "sam_periphclks.h"
#include "sam_ethernet.h"
#include <arch/board/board.h>
#if defined(CONFIG_NET) && defined(CONFIG_SAMV7_EMAC)
* Pre-processor Definitions
****************************************************************************/
* is required.
*/
#if !defined(CONFIG_SCHED_WORKQUEUE)
# error Work queue support is required
#endif
* will be the same 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
#ifdef CONFIG_SAMV7_EMAC0
# ifndef CONFIG_SAMV7_EMAC0_NRXBUFFERS
# define CONFIG_SAMV7_EMAC0_NRXBUFFERS 16
# endif
# if CONFIG_SAMV7_EMAC0_NRXBUFFERS <= 1
# error CONFIG_SAMV7_EMAC0_NRXBUFFERS invalid
# endif
# ifndef CONFIG_SAMV7_EMAC0_NTXBUFFERS
# define CONFIG_SAMV7_EMAC0_NTXBUFFERS 8
# endif
# if CONFIG_SAMV7_EMAC0_NTXBUFFERS <= 1
# error CONFIG_SAMV7_EMAC0_NTXBUFFERS invalid
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYADDR
# error "CONFIG_SAMV7_EMAC0_PHYADDR must be defined in the NuttX configuration"
# endif
# if !defined(CONFIG_SAMV7_EMAC0_MII) && !defined(CONFIG_SAMV7_EMAC0_RMII)
# warning "Neither CONFIG_SAMV7_EMAC0_MII nor CONFIG_SAMV7_EMAC0_RMII defined"
# endif
# if defined(CONFIG_SAMV7_EMAC0_MII) && defined(CONFIG_SAMV7_EMAC0_RMII)
# error "Both CONFIG_SAMV7_EMAC0_MII and CONFIG_SAMV7_EMAC0_RMII defined"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR
# error "CONFIG_SAMV7_EMAC0_PHYSR must be defined in the NuttX configuration"
# endif
# ifdef CONFIG_SAMV7_EMAC0_AUTONEG
# ifdef CONFIG_SAMV7_EMAC0_PHYSR_ALTCONFIG
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_ALTMODE
# error "CONFIG_SAMV7_EMAC0_PHYSR_ALTMODE must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_10HD
# error "CONFIG_SAMV7_EMAC0_PHYSR_10HD must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_100HD
# error "CONFIG_SAMV7_EMAC0_PHYSR_100HD must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_10FD
# error "CONFIG_SAMV7_EMAC0_PHYSR_10FD must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_100FD
# error "CONFIG_SAMV7_EMAC0_PHYSR_100FD must be defined in the NuttX configuration"
# endif
# else
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_SPEED
# error "CONFIG_SAMV7_EMAC0_PHYSR_SPEED must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_100MBPS
# error "CONFIG_SAMV7_EMAC0_PHYSR_100MBPS must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_MODE
# error "CONFIG_SAMV7_EMAC0_PHYSR_MODE must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC0_PHYSR_FULLDUPLEX
# error "CONFIG_SAMV7_EMAC0_PHYSR_FULLDUPLEX must be defined in the NuttX configuration"
# endif
# endif
# endif
# if defined(SAMV7_EMAC0_PHY_DM9161)
# define EMAC0_MII_OUI_MSB 0x0181
# define EMAC0_MII_OUI_LSB 0x2e
# elif defined(SAMV7_EMAC0_PHY_LAN8700)
# define EMAC0_MII_OUI_MSB 0x0007
# define EMAC0_MII_OUI_LSB 0x30
# elif defined(SAMV7_EMAC0_PHY_KSZ8051)
# define EMAC0_MII_OUI_MSB 0x0022
# define EMAC0_MII_OUI_LSB 0x05
# elif defined(SAMV7_EMAC0_PHY_KSZ8061)
# define EMAC0_MII_OUI_MSB 0x0022
# define EMAC0_MII_OUI_LSB 0x05
# elif defined(SAMV7_EMAC0_PHY_KSZ8081)
# define EMAC0_MII_OUI_MSB 0x0022
# define EMAC0_MII_OUI_LSB 0x05
# else
# error EMAC PHY unrecognized
# endif
#endif
#ifdef CONFIG_SAMV7_EMAC1
# ifndef CONFIG_SAMV7_EMAC1_NRXBUFFERS
# define CONFIG_SAMV7_EMAC1_NRXBUFFERS 16
# endif
# if CONFIG_SAMV7_EMAC1_NRXBUFFERS <= 1
# error CONFIG_SAMV7_EMAC1_NRXBUFFERS invalid
# endif
# ifndef CONFIG_SAMV7_EMAC1_NTXBUFFERS
# define CONFIG_SAMV7_EMAC1_NTXBUFFERS 8
# endif
# if CONFIG_SAMV7_EMAC1_NTXBUFFERS <= 1
# error CONFIG_SAMV7_EMAC1_NTXBUFFERS invalid
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYADDR
# error "CONFIG_SAMV7_EMAC1_PHYADDR must be defined in the NuttX configuration"
# endif
# if !defined(CONFIG_SAMV7_EMAC1_MII) && !defined(CONFIG_SAMV7_EMAC1_RMII)
# warning "Neither CONFIG_SAMV7_EMAC1_MII nor CONFIG_SAMV7_EMAC1_RMII defined"
# endif
# if defined(CONFIG_SAMV7_EMAC1_MII) && defined(CONFIG_SAMV7_EMAC1_RMII)
# error "Both CONFIG_SAMV7_EMAC1_MII and CONFIG_SAMV7_EMAC1_RMII defined"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR
# error "CONFIG_SAMV7_EMAC1_PHYSR must be defined in the NuttX configuration"
# endif
# ifdef CONFIG_SAMV7_EMAC1_AUTONEG
# ifdef CONFIG_SAMV7_EMAC1_PHYSR_ALTCONFIG
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_ALTMODE
# error "CONFIG_SAMV7_EMAC1_PHYSR_ALTMODE must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_10HD
# error "CONFIG_SAMV7_EMAC1_PHYSR_10HD must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_100HD
# error "CONFIG_SAMV7_EMAC1_PHYSR_100HD must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_10FD
# error "CONFIG_SAMV7_EMAC1_PHYSR_10FD must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_100FD
# error "CONFIG_SAMV7_EMAC1_PHYSR_100FD must be defined in the NuttX configuration"
# endif
# else
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_SPEED
# error "CONFIG_SAMV7_EMAC1_PHYSR_SPEED must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_100MBPS
# error "CONFIG_SAMV7_EMAC1_PHYSR_100MBPS must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_MODE
# error "CONFIG_SAMV7_EMAC1_PHYSR_MODE must be defined in the NuttX configuration"
# endif
# ifndef CONFIG_SAMV7_EMAC1_PHYSR_FULLDUPLEX
# error "CONFIG_SAMV7_EMAC1_PHYSR_FULLDUPLEX must be defined in the NuttX configuration"
# endif
# endif
# endif
# if defined(SAMV7_EMAC1_PHY_DM9161)
# define EMAC1_MII_OUI_MSB 0x0181
# define EMAC1_MII_OUI_LSB 0x2e
# elif defined(SAMV7_EMAC1_PHY_LAN8700)
# define EMAC1_MII_OUI_MSB 0x0007
# define EMAC1_MII_OUI_LSB 0x30
# elif defined(SAMV7_EMAC1_PHY_KSZ8051)
# define EMAC1_MII_OUI_MSB 0x0022
# define EMAC1_MII_OUI_LSB 0x05
# elif defined(SAMV7_EMAC1_PHY_KSZ8061)
# define EMAC1_MII_OUI_MSB 0x0022
# define EMAC1_MII_OUI_LSB 0x05
# elif defined(SAMV7_EMAC1_PHY_KSZ8081)
# define EMAC1_MII_OUI_MSB 0x0022
# define EMAC1_MII_OUI_LSB 0x05
# else
# error EMAC PHY unrecognized
# endif
#endif
#undef CONFIG_SAMV7_EMAC_NBC
* enabled.
*/
#ifdef CONFIG_NET_DUMPPACKET
# define sam_dumppacket(m,a,n) lib_dumpbuffer(m,a,n)
#else
# define sam_dumppacket(m,a,n)
#endif
#ifndef CONFIG_NET_INFO
# undef CONFIG_SAMV7_EMAC_REGDEBUG
#endif
#define EMAC_QUEUE_0 0
#define EMAC_QUEUE_1 1
#define EMAC_QUEUE_2 2
#define EMAC_QUEUE_3 3
#define EMAC_QUEUE_4 4
#define EMAC_QUEUE_5 5
#define EMAC_NQUEUES (g_emac_nqueues)
#define EMAC_NQUEUES_REVA 3
#define EMAC_NQUEUES_REVB 6
#define EMAC_NQUEUES_MAX 6
#define EMAC_RX_INTS (EMAC_INT_RCOMP | EMAC_INT_RXUBR | EMAC_INT_ROVR)
#define EMAC_TXERR_INTS (EMAC_INT_TUR | EMAC_INT_RLEX | EMAC_INT_TFC | \
EMAC_INT_HRESP)
#define EMAC_TX_INTS (EMAC_TXERR_INTS | EMAC_INT_TCOMP)
*
* The EMAC peripheral requires that descriptors and buffers be aligned
* the 8-byte (2 word boundaries). However, if the data cache is enabled
* the a higher level of alignment is required. That is because the data
* will need to be invalidated and that cache invalidation will occur in
* multiples of full cache lines.
*
* In addition, padding may be required at the ends of the descriptors and
* buffers to protect data after the end of from invalidation.
*/
#ifdef CONFIG_ARMV7M_DCACHE
# define EMAC_ALIGN ARMV7M_DCACHE_LINESIZE
#else
# define EMAC_ALIGN 8
#endif
#define EMAC_ALIGN_MASK (EMAC_ALIGN - 1)
#define EMAC_ALIGN_UP(n) (((n) + EMAC_ALIGN_MASK) & ~EMAC_ALIGN_MASK)
*
* RX buffer size if fixed at 128 bytes since fragmented incoming packets
* are handled.
*/
#define EMAC_RX_UNITSIZE EMAC_ALIGN_UP(128)
#define EMAC_TX_UNITSIZE EMAC_ALIGN_UP(CONFIG_NET_ETH_PKTSIZE)
#define DUMMY_BUFSIZE EMAC_ALIGN_UP(128)
#define DUMMY_NBUFFERS 2
#define EMAC0_RX_DESCSIZE (CONFIG_SAMV7_EMAC0_NRXBUFFERS * sizeof(struct emac_rxdesc_s))
#define EMAC0_TX_DESCSIZE (CONFIG_SAMV7_EMAC0_NTXBUFFERS * sizeof(struct emac_txdesc_s))
#define EMAC0_RX_BUFSIZE (CONFIG_SAMV7_EMAC0_NRXBUFFERS * EMAC_RX_UNITSIZE)
#define EMAC0_TX_BUFSIZE (CONFIG_SAMV7_EMAC0_NTXBUFFERS * EMAC_TX_UNITSIZE)
#define EMAC1_RX_DESCSIZE (CONFIG_SAMV7_EMAC1_NRXBUFFERS * sizeof(struct emac_rxdesc_s))
#define EMAC1_TX_DESCSIZE (CONFIG_SAMV7_EMAC1_NTXBUFFERS * sizeof(struct emac_txdesc_s))
#define EMAC1_RX_BUFSIZE (CONFIG_SAMV7_EMAC1_NRXBUFFERS * EMAC_RX_UNITSIZE)
#define EMAC1_TX_BUFSIZE (CONFIG_SAMV7_EMAC1_NTXBUFFERS * EMAC_TX_UNITSIZE)
#define SAM_TXTIMEOUT (60*CLK_TCK)
#define PHY_RETRY_MAX 1000000
* header
*/
#define BUF ((struct eth_hdr_s *)priv->dev.d_buf)
* Private Types
****************************************************************************/
struct sam_emacattr_s
{
uint32_t base;
uint8_t emac;
uint8_t irq;
uint8_t phyaddr;
uint8_t physr;
uint16_t msoui;
uint8_t lsoui;
bool rmii;
bool clause45;
bool autoneg;
bool sralt;
union
{
* duplex.
*/
struct
{
uint16_t stdmask;
uint16_t speed100;
uint16_t fduplex;
} std;
* multi-bit field.
*/
struct
{
uint16_t altmask;
uint16_t hdx10;
uint16_t hdx100;
uint16_t fdx10;
uint16_t fdx100;
} alt;
} u;
uint8_t ntxbuffers;
uint8_t nrxbuffers;
#ifdef CONFIG_SAMV7_EMAC_PREALLOCATE
struct emac_txdesc_s *tx0desc;
struct emac_rxdesc_s *rx0desc;
uint8_t *tx0buffer;
uint8_t *rx0buffer;
struct emac_txdesc_s *tx1desc;
struct emac_rxdesc_s *rx1desc;
uint8_t *tx1buffer;
uint8_t *rx1buffer;
#endif
};
struct sam_queue_s
{
struct emac_rxdesc_s *rxdesc;
struct emac_txdesc_s *txdesc;
uint8_t *rxbuffer;
uint8_t *txbuffer;
uint16_t rxbufsize;
uint16_t txbufsize;
uint8_t nrxbuffers;
uint8_t rxndx;
uint8_t ntxbuffers;
uint16_t txhead;
uint16_t txtail;
};
struct sam_emac_s
{
uint8_t ifup : 1;
struct wdog_s txtimeout;
struct work_s irqwork;
struct work_s pollwork;
struct net_driver_s dev;
const struct sam_emacattr_s *attr;
uint8_t phyaddr;
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
uint8_t phytype;
#endif
struct sam_queue_s xfrq[EMAC_NQUEUES_MAX];
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
bool wrlast;
uintptr_t addrlast;
uint32_t vallast;
int ntimes;
#endif
};
* Private Function Prototypes
****************************************************************************/
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
static bool sam_checkreg(struct sam_emac_s *priv, bool wr,
uint32_t regval, uintptr_t address);
#endif
static uint32_t sam_getreg(struct sam_emac_s *priv, uint16_t offset);
static void sam_putreg(struct sam_emac_s *priv,
uint16_t offset, uint32_t val);
static uint16_t sam_txinuse(struct sam_emac_s *priv, int qid);
static uint16_t sam_txfree(struct sam_emac_s *priv, int qid);
static int sam_buffer_allocate(struct sam_emac_s *priv);
static void sam_buffer_free(struct sam_emac_s *priv);
static int sam_transmit(struct sam_emac_s *priv, int qid);
static int sam_txpoll(struct net_driver_s *dev);
static void sam_dopoll(struct sam_emac_s *priv, int qid);
static int sam_recvframe(struct sam_emac_s *priv, int qid);
static void sam_receive(struct sam_emac_s *priv, int qid);
static void sam_txdone(struct sam_emac_s *priv, int qid);
static void sam_txerr_interrupt(struct sam_emac_s *priv, int qid);
static void sam_interrupt_work(void *arg);
static int sam_emac_interrupt(int irq, void *context, void *arg);
static void sam_txtimeout_work(void *arg);
static void sam_txtimeout_expiry(wdparm_t arg);
static int sam_ifup(struct net_driver_s *dev);
static int sam_ifdown(struct net_driver_s *dev);
static void sam_txavail_work(void *arg);
static int sam_txavail(struct net_driver_s *dev);
#if defined(CONFIG_NET_MCASTGROUP) || defined(CONFIG_NET_ICMPv6)
static unsigned int sam_hashindx(const uint8_t *mac);
static int sam_addmac(struct net_driver_s *dev, const uint8_t *mac);
#endif
#ifdef CONFIG_NET_MCASTGROUP
static int sam_rmmac(struct net_driver_s *dev, const uint8_t *mac);
#endif
#ifdef CONFIG_NETDEV_IOCTL
static int sam_ioctl(struct net_driver_s *dev, int cmd, unsigned long arg);
#endif
#if defined(CONFIG_DEBUG_NET) && defined(CONFIG_DEBUG_INFO)
static void sam_phydump(struct sam_emac_s *priv);
#else
# define sam_phydump(priv)
#endif
#if 0
static bool sam_is10hdx(struct sam_emac_s *priv, uint16_t physr);
#endif
static bool sam_is100hdx(struct sam_emac_s *priv, uint16_t physr);
static bool sam_is10fdx(struct sam_emac_s *priv, uint16_t physr);
static bool sam_is100fdx(struct sam_emac_s *priv, uint16_t physr);
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
static int sam_phyintenable(struct sam_emac_s *priv);
#endif
static int sam_phywait(struct sam_emac_s *priv);
static int sam_phyreset(struct sam_emac_s *priv);
static int sam_phyfind(struct sam_emac_s *priv, uint8_t *phyaddr);
static int sam_phyread(struct sam_emac_s *priv, uint8_t phyaddr,
uint8_t regaddr, uint16_t *phyval);
static int sam_phywrite(struct sam_emac_s *priv, uint8_t phyaddr,
uint8_t regaddr, uint16_t phyval);
static int sam_autonegotiate(struct sam_emac_s *priv);
static bool sam_linkup(struct sam_emac_s *priv);
static int sam_phyinit(struct sam_emac_s *priv);
static void sam_txreset(struct sam_emac_s *priv, int qid);
static void sam_rxreset(struct sam_emac_s *priv, int qid);
static void sam_emac_enableclk(struct sam_emac_s *priv);
#ifndef CONFIG_NETDEV_PHY_IOCTL
static void sam_emac_disableclk(struct sam_emac_s *priv);
#endif
static void sam_emac_reset(struct sam_emac_s *priv);
static void sam_macaddress(struct sam_emac_s *priv);
static int sam_queue0_configure(struct sam_emac_s *priv);
static int sam_queue_configure(struct sam_emac_s *priv, int qid);
static int sam_emac_configure(struct sam_emac_s *priv);
* Private Data
****************************************************************************/
#ifdef CONFIG_SAMV7_EMAC_PREALLOCATE
#ifdef CONFIG_SAMV7_EMAC0
static struct
{
struct emac_txdesc_s tx0desc[CONFIG_SAMV7_EMAC0_NTXBUFFERS]
aligned_data(EMAC_ALIGN);
struct emac_txdesc_s tx1desc[DUMMY_NBUFFERS]
aligned_data(EMAC_ALIGN);
struct emac_rxdesc_s rx0desc[CONFIG_SAMV7_EMAC0_NRXBUFFERS]
aligned_data(EMAC_ALIGN);
struct emac_rxdesc_s rx1desc[DUMMY_NBUFFERS]
aligned_data(EMAC_ALIGN);
*
* 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
*/
uint8_t tx0buffer[EMAC0_TX_BUFSIZE]
aligned_data(EMAC_ALIGN);
uint8_t tx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
aligned_data(EMAC_ALIGN);
uint8_t rx0buffer[EMAC0_RX_BUFSIZE]
aligned_data(EMAC_ALIGN);
uint8_t rx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
aligned_data(EMAC_ALIGN);
} g_emac0_mem;
#endif
#ifdef CONFIG_SAMV7_EMAC1
static struct
{
struct emac_txdesc_s tx0desc[CONFIG_SAMV7_EMAC1_NTXBUFFERS]
aligned_data(EMAC_ALIGN);
struct emac_txdesc_s tx1desc[DUMMY_NBUFFERS]
aligned_data(EMAC_ALIGN);
struct emac_rxdesc_s rx0desc[CONFIG_SAMV7_EMAC1_NRXBUFFERS]
aligned_data(EMAC_ALIGN);
struct emac_rxdesc_s rx1desc[DUMMY_NBUFFERS]
aligned_data(EMAC_ALIGN);
*
* 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
*/
uint8_t tx0buffer[EMAC1_TX_BUFSIZE]
aligned_data(EMAC_ALIGN);
uint8_t tx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
aligned_data(EMAC_ALIGN);
uint8_t rx0buffer[EMAC1_RX_BUFSIZE]
aligned_data(EMAC_ALIGN);
uint8_t rx1buffer[DUMMY_NBUFFERS * DUMMY_BUFSIZE]
aligned_data(EMAC_ALIGN);
} g_emac1_mem;
#endif
#endif
#ifdef CONFIG_SAMV7_EMAC0
static const struct sam_emacattr_s g_emac0_attr =
{
.base = SAM_EMAC0_BASE,
.emac = EMAC0_INTF,
.irq = SAM_IRQ_EMAC0,
.phyaddr = CONFIG_SAMV7_EMAC0_PHYADDR,
.physr = CONFIG_SAMV7_EMAC0_PHYSR,
.msoui = EMAC0_MII_OUI_MSB,
.lsoui = EMAC0_MII_OUI_LSB,
#ifdef CONFIG_SAMV7_EMAC0_RMII
.rmii = true,
#endif
#ifdef CONFIG_SAMV7_EMAC0_CLAUSE45
.clause45 = true,
#endif
#ifdef CONFIG_SAMV7_EMAC0_AUTONEG
.autoneg = true,
#endif
#ifdef CONFIG_SAMV7_EMAC0_PHYSR_ALTCONFIG
.sralt = true,
#endif
.u =
{
#ifdef CONFIG_SAMV7_EMAC0_PHYSR_ALTCONFIG
.alt =
{
.altmask = CONFIG_SAMV7_EMAC0_PHYSR_ALTMODE,
.hdx10 = CONFIG_SAMV7_EMAC0_PHYSR_10HD,
.hdx100 = CONFIG_SAMV7_EMAC0_PHYSR_100HD,
.fdx10 = CONFIG_SAMV7_EMAC0_PHYSR_10FD,
.fdx100 = CONFIG_SAMV7_EMAC0_PHYSR_100FD,
},
#else
.std =
{
.stdmask = CONFIG_SAMV7_EMAC0_PHYSR_SPEED |
CONFIG_SAMV7_EMAC0_PHYSR_MODE,
.speed100 = CONFIG_SAMV7_EMAC0_PHYSR_100MBPS,
.fduplex = CONFIG_SAMV7_EMAC0_PHYSR_FULLDUPLEX,
},
#endif
},
.ntxbuffers = CONFIG_SAMV7_EMAC0_NTXBUFFERS,
.nrxbuffers = CONFIG_SAMV7_EMAC0_NRXBUFFERS,
#ifdef CONFIG_SAMV7_EMAC_PREALLOCATE
.tx0desc = g_emac0_mem.tx0desc,
.rx0desc = g_emac0_mem.rx0desc,
.tx0buffer = g_emac0_mem.tx0buffer,
.rx0buffer = g_emac0_mem.rx0buffer,
.tx1desc = g_emac0_mem.tx1desc,
.rx1desc = g_emac0_mem.rx1desc,
.tx1buffer = g_emac0_mem.tx1buffer,
.rx1buffer = g_emac0_mem.rx1buffer,
#endif
};
*
* 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.
*/
static uint8_t g_pktbuf0[MAX_NETDEV_PKTSIZE + CONFIG_NET_GUARDSIZE];
static struct sam_emac_s g_emac0;
#endif
#ifdef CONFIG_SAMV7_EMAC1
static const struct sam_emacattr_s g_emac1_attr =
{
.base = SAM_EMAC1_BASE,
.emac = EMAC1_INTF,
.irq = SAM_IRQ_EMAC1,
.phyaddr = CONFIG_SAMV7_EMAC1_PHYADDR,
.physr = CONFIG_SAMV7_EMAC1_PHYSR,
.msoui = EMAC1_MII_OUI_MSB,
.lsoui = EMAC1_MII_OUI_LSB,
#ifdef CONFIG_SAMV7_EMAC1_RMII
.rmii = true,
#endif
#ifdef CONFIG_SAMV7_EMAC1_CLAUSE45
.clause45 = true,
#endif
#ifdef CONFIG_SAMV7_EMAC1_AUTONEG
.autoneg = true,
#endif
#ifdef CONFIG_SAMV7_EMAC1_PHYSR_ALTCONFIG
.sralt = true,
#endif
.u =
{
#ifdef CONFIG_SAMV7_EMAC1_PHYSR_ALTCONFIG
.alt =
{
.altmask = CONFIG_SAMV7_EMAC1_PHYSR_ALTMODE,
.hdx10 = CONFIG_SAMV7_EMAC1_PHYSR_10HD,
.hdx100 = CONFIG_SAMV7_EMAC1_PHYSR_100HD,
.fdx10 = CONFIG_SAMV7_EMAC1_PHYSR_10FD,
.fdx100 = CONFIG_SAMV7_EMAC1_PHYSR_100FD,
},
#else
.std =
{
.stdmask = CONFIG_SAMV7_EMAC1_PHYSR_SPEED |
CONFIG_SAMV7_EMAC1_PHYSR_MODE,
.speed100 = CONFIG_SAMV7_EMAC1_PHYSR_100MBPS,
.fduplex = CONFIG_SAMV7_EMAC1_PHYSR_FULLDUPLEX,
},
#endif
},
.ntxbuffers = CONFIG_SAMV7_EMAC1_NTXBUFFERS,
.nrxbuffers = CONFIG_SAMV7_EMAC1_NRXBUFFERS,
#ifdef CONFIG_SAMV7_EMAC_PREALLOCATE
.tx0desc = g_emac1_mem.tx0desc,
.rx0desc = g_emac1_mem.rx0desc,
.tx0buffer = g_emac1_mem.tx0buffer,
.rx0buffer = g_emac1_mem.rx0buffer,
.tx1desc = g_emac1_mem.tx1desc,
.rx1desc = g_emac1_mem.rx1desc,
.tx1buffer = g_emac1_mem.tx1buffer,
.rx1buffer = g_emac1_mem.rx1buffer,
#endif
};
*
* 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.
*/
static uint8_t g_pktbuf1[MAX_NETDEV_PKTSIZE + CONFIG_NET_GUARDSIZE];
static struct sam_emac_s g_emac1;
#endif
* revision. NOTE that this is a global setting and applies to both
* EMAC peripherals.
*/
static uint8_t g_emac_nqueues = EMAC_NQUEUES_REVA;
* Private Functions
****************************************************************************/
* Name: sam_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 same as the preceding register access.
*
****************************************************************************/
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
static bool sam_checkreg(struct sam_emac_s *priv, bool wr, uint32_t regval,
uintptr_t regaddr)
{
if (wr == priv->wrlast &&
regval == priv->vallast &&
regaddr == priv->addrlast)
{
priv->ntimes++;
return false;
}
else
{
if (priv->ntimes > 0)
{
ninfo("...[Repeats %d times]...\n", priv->ntimes);
}
priv->wrlast = wr;
priv->vallast = regval;
priv->addrlast = regaddr;
priv->ntimes = 0;
}
return true;
}
#endif
* Name: sam_getreg
*
* Description:
* Read a 32-bit EMAC register using an offset from the EMAC base address
*
****************************************************************************/
static uint32_t sam_getreg(struct sam_emac_s *priv, uint16_t offset)
{
uintptr_t regaddr = priv->attr->base + (uintptr_t)offset;
uint32_t regval = getreg32(regaddr);
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
if (sam_checkreg(priv, false, regval, regaddr))
{
ninfo("%08x->%08x\n", regaddr, regval);
}
#endif
return regval;
}
* Name: sam_putreg
*
* Description:
* Write to a 32-bit EMAC register using an offset from the EMAC base
* address
*
****************************************************************************/
static void sam_putreg(struct sam_emac_s *priv,
uint16_t offset, uint32_t regval)
{
uintptr_t regaddr = priv->attr->base + (uintptr_t)offset;
#ifdef CONFIG_SAMV7_EMAC_REGDEBUG
if (sam_checkreg(priv, true, regval, regaddr))
{
ninfo("%08x<-%08x\n", regaddr, regval);
}
#endif
putreg32(regval, regaddr);
}
* Function: sam_txinuse
*
* Description:
* Return the number of TX buffers in-use
*
* Input Parameters:
* priv - The EMAC driver state
* quid - The transfer queue to examine
*
* Returned Value:
* The number of TX buffers in-use
*
****************************************************************************/
static uint16_t sam_txinuse(struct sam_emac_s *priv, int qid)
{
struct sam_queue_s *xfrq = &priv->xfrq[qid];
uint32_t txhead32 = (uint32_t)xfrq->txhead;
if ((uint32_t)xfrq->txtail > txhead32)
{
txhead32 += xfrq->ntxbuffers;
}
return (uint16_t)(txhead32 - (uint32_t)xfrq->txtail);
}
* Function: sam_txfree
*
* Description:
* Return the number of TX buffers available
*
* Input Parameters:
* priv - The EMAC driver state
* qid - The transfer queue to examine
*
* Returned Value:
* The number of TX buffers available
*
****************************************************************************/
static uint16_t sam_txfree(struct sam_emac_s *priv, int qid)
{
* number of buffers in use. Notice that that actual number of buffers is
* the configured size minus 1.
*/
return (priv->xfrq[qid].ntxbuffers - 1) - sam_txinuse(priv, qid);
}
* Function: sam_buffer_allocate
*
* 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 EMAC driver state
*
* Returned Value:
* OK on success; Negated errno on failure.
*
* Assumptions:
* Called very early in the initialization sequence.
*
****************************************************************************/
static int sam_buffer_allocate(struct sam_emac_s *priv)
{
#ifdef CONFIG_SAMV7_EMAC_PREALLOCATE
struct sam_queue_s *xfrq;
int qid;
priv->xfrq[0].txdesc = priv->attr->tx0desc;
priv->xfrq[0].ntxbuffers = priv->attr->ntxbuffers;
priv->xfrq[0].rxdesc = priv->attr->rx0desc;
priv->xfrq[0].nrxbuffers = priv->attr->nrxbuffers;
priv->xfrq[0].txbuffer = priv->attr->tx0buffer;
priv->xfrq[0].txbufsize = EMAC_TX_UNITSIZE;
priv->xfrq[0].rxbuffer = priv->attr->rx0buffer;
priv->xfrq[0].rxbufsize = EMAC_RX_UNITSIZE;
for (qid = 1; qid < EMAC_NQUEUES; qid++)
{
xfrq = &priv->xfrq[qid];
xfrq->txdesc = priv->attr->tx1desc;
xfrq->ntxbuffers = DUMMY_NBUFFERS;
xfrq->rxdesc = priv->attr->rx1desc;
xfrq->nrxbuffers = DUMMY_NBUFFERS;
xfrq->txbuffer = priv->attr->tx1buffer;
xfrq->txbufsize = DUMMY_BUFSIZE;
xfrq->rxbuffer = priv->attr->rx1buffer;
xfrq->rxbufsize = DUMMY_BUFSIZE;
}
#else
struct sam_queue_s *xfrq;
size_t allocsize;
int qid;
allocsize = EMAC_ALIGN_UP(priv->attr->ntxbuffers *
sizeof(struct emac_txdesc_s));
priv->xfrq[0].txdesc = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[0].txdesc)
{
nerr("ERROR: Failed to allocate TX descriptors\n");
return -ENOMEM;
}
memset(priv->xfrq[0].txdesc, 0, allocsize);
priv->xfrq[0].ntxbuffers = priv->attr->ntxbuffers;
allocsize = EMAC_ALIGN_UP(priv->attr->nrxbuffers *
sizeof(struct emac_rxdesc_s));
priv->xfrq[0].rxdesc = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[0].rxdesc)
{
nerr("ERROR: Failed to allocate RX descriptors\n");
sam_buffer_free(priv);
return -ENOMEM;
}
memset(priv->xfrq[0].rxdesc, 0, allocsize);
priv->xfrq[0].nrxbuffers = priv->attr->nrxbuffers;
allocsize = priv->attr->ntxbuffers * EMAC_TX_UNITSIZE;
priv->xfrq[0].txbuffer = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[0].txbuffer)
{
nerr("ERROR: Failed to allocate TX buffer\n");
sam_buffer_free(priv);
return -ENOMEM;
}
priv->xfrq[0].txbufsize = EMAC_TX_UNITSIZE;
allocsize = priv->attr->nrxbuffers * EMAC_RX_UNITSIZE;
priv->xfrq[0].rxbuffer = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[0].rxbuffer)
{
nerr("ERROR: Failed to allocate RX buffer\n");
sam_buffer_free(priv);
return -ENOMEM;
}
priv->xfrq[0].rxbufsize = EMAC_RX_UNITSIZE;
allocsize = EMAC_ALIGN_UP(DUMMY_NBUFFERS * sizeof(struct emac_txdesc_s));
priv->xfrq[1].txdesc = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[1].txdesc)
{
nerr("ERROR: Failed to allocate TX descriptors\n");
return -ENOMEM;
}
memset(priv->xfrq[1].txdesc, 0, allocsize);
priv->xfrq[1].ntxbuffers = DUMMY_NBUFFERS;
allocsize = EMAC_ALIGN_UP(DUMMY_NBUFFERS * sizeof(struct emac_rxdesc_s));
priv->xfrq[1].rxdesc = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[1].rxdesc)
{
nerr("ERROR: Failed to allocate RX descriptors\n");
sam_buffer_free(priv);
return -ENOMEM;
}
memset(priv->xfrq[1].rxdesc, 0, allocsize);
priv->xfrq[1].nrxbuffers = DUMMY_NBUFFERS;
allocsize = DUMMY_NBUFFERS * DUMMY_BUFSIZE;
priv->xfrq[1].txbuffer = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[1].txbuffer)
{
nerr("ERROR: Failed to allocate TX buffer\n");
sam_buffer_free(priv);
return -ENOMEM;
}
priv->xfrq[1].txbufsize = DUMMY_BUFSIZE;
allocsize = DUMMY_NBUFFERS * DUMMY_BUFSIZE;
priv->xfrq[1].rxbuffer = kmm_memalign(EMAC_ALIGN, allocsize);
if (!priv->xfrq[1].rxbuffer)
{
nerr("ERROR: Failed to allocate RX buffer\n");
sam_buffer_free(priv);
return -ENOMEM;
}
priv->xfrq[1].rxbufsize = DUMMY_BUFSIZE;
for (qid = 2; qid < EMAC_NQUEUES; qid++)
{
xfrq = &priv->xfrq[qid];
xfrq->txdesc = priv->xfrq[1].txdesc;
xfrq->rxdesc = priv->xfrq[1].rxdesc;
xfrq->txbuffer = priv->xfrq[1].txbuffer;
xfrq->rxbuffer = priv->xfrq[1].rxbuffer;
xfrq->ntxbuffers = DUMMY_NBUFFERS;
xfrq->nrxbuffers = DUMMY_NBUFFERS;
xfrq->txbufsize = DUMMY_BUFSIZE;
xfrq->rxbufsize = DUMMY_BUFSIZE;
}
#endif
DEBUGASSERT(((uintptr_t)priv->xfrq[0].rxdesc & EMAC_ALIGN_MASK) == 0 &&
((uintptr_t)priv->xfrq[0].rxbuffer & EMAC_ALIGN_MASK) == 0 &&
((uintptr_t)priv->xfrq[0].txdesc & EMAC_ALIGN_MASK) == 0 &&
((uintptr_t)priv->xfrq[0].txbuffer & EMAC_ALIGN_MASK) == 0);
DEBUGASSERT(((uintptr_t)priv->xfrq[1].rxdesc & EMAC_ALIGN_MASK) == 0 &&
((uintptr_t)priv->xfrq[1].rxbuffer & EMAC_ALIGN_MASK) == 0 &&
((uintptr_t)priv->xfrq[1].txdesc & EMAC_ALIGN_MASK) == 0 &&
((uintptr_t)priv->xfrq[1].txbuffer & EMAC_ALIGN_MASK) == 0);
return OK;
}
* Function: sam_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 EMAC driver state
*
* Returned Value:
* None
*
****************************************************************************/
static void sam_buffer_free(struct sam_emac_s *priv)
{
#ifndef CONFIG_SAMV7_EMAC_PREALLOCATE
struct sam_queue_s *xfrq;
int qid;
for (qid = 0; qid < EMAC_NQUEUES; qid++)
{
xfrq = &priv->xfrq[qid];
if (qid < 2)
{
if (xfrq->txdesc)
{
kmm_free(xfrq->txdesc);
xfrq->txdesc = NULL;
}
if (xfrq->rxdesc)
{
kmm_free(xfrq->rxdesc);
xfrq->rxdesc = NULL;
}
if (xfrq->txbuffer)
{
kmm_free(xfrq->txbuffer);
xfrq->txbuffer = NULL;
}
if (xfrq->rxbuffer)
{
kmm_free(xfrq->rxbuffer);
xfrq->rxbuffer = NULL;
}
}
xfrq->txdesc = NULL;
xfrq->rxdesc = NULL;
xfrq->txbuffer = NULL;
xfrq->rxbuffer = NULL;
}
#endif
}
* Function: sam_transmit
*
* Description:
* Start hardware transmission. Called either from the txdone interrupt
* handling or from watchdog based polling.
*
* REVISIT: This implementation does not support scatter-gather DMA.
*
* Input Parameters:
* priv - Reference to the driver state structure
* qid - The queue to send the frame
*
* 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 sam_transmit(struct sam_emac_s *priv, int qid)
{
struct net_driver_s *dev = &priv->dev;
volatile struct emac_txdesc_s *txdesc;
struct sam_queue_s *xfrq;
uint32_t regval;
uint32_t status;
uint16_t txhead;
NETDEV_TXPACKETS(&priv->dev);
if (dev->d_len > EMAC_TX_UNITSIZE)
{
nerr("ERROR: Packet too big: %d\n", dev->d_len);
return -EINVAL;
}
xfrq = &priv->xfrq[qid];
txhead = xfrq->txhead;
txdesc = &xfrq->txdesc[txhead];
ninfo("d_len: %d txhead[%d]: %d\n", dev->d_len, qid, xfrq->txhead);
sam_dumppacket("Transmit packet", dev->d_buf, dev->d_len);
if (sam_txfree(priv, qid) < 1)
{
nerr("ERROR: No free TX descriptors\n");
return -EBUSY;
}
if (dev->d_len > 0)
{
* wanted to support zero copy transfers, we would need to make sure
* that dev->d_buf and txdesc->addr refer to the same memory.
*/
memcpy((void *)txdesc->addr, dev->d_buf, dev->d_len);
up_clean_dcache((uint32_t)txdesc->addr,
(uint32_t)txdesc->addr + dev->d_len);
}
status = dev->d_len | EMACTXD_STA_LAST;
if (txhead == xfrq->ntxbuffers - 1)
{
status |= EMACTXD_STA_WRAP;
}
txdesc->status = status;
up_clean_dcache((uint32_t)txdesc,
(uint32_t)txdesc + sizeof(struct emac_txdesc_s));
if (++txhead >= xfrq->ntxbuffers)
{
txhead = 0;
}
xfrq->txhead = txhead;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_TSTART;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
wd_start(&priv->txtimeout, SAM_TXTIMEOUT,
sam_txtimeout_expiry, (wdparm_t)priv);
* available.
*/
dev->d_len = 0;
* RCOMP interrupt to stop further RX processing. Why? Because EACH RX
* packet that is dispatched is also an opportunity to replay with a TX
* packet. So, if we cannot handle an RX packet reply, then we disable
* all RX packet processing.
*/
if (sam_txfree(priv, qid) < 1)
{
ninfo("Disabling RX interrupts\n");
sam_putreg(priv, SAM_EMAC_IDR_OFFSET, EMAC_INT_RCOMP);
}
return OK;
}
* Function: sam_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 sam_txpoll(struct net_driver_s *dev)
{
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
sam_transmit(priv, EMAC_QUEUE_0);
* the TX poll if we do not have buffering for another packet.
*/
if (sam_txfree(priv, EMAC_QUEUE_0) == 0)
{
* available for another transfer.
*/
return -EBUSY;
}
* have been examined.
*/
return 0;
}
* Function: sam_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 (sam_txdone),
* 2. When new TX data is available (sam_txavail_process),
* 3. For certain TX errors (sam_txerr_interrupt), and
* 4. After a TX timeout to restart the sending process
* (sam_txtimeout_process).
*
* Input Parameters:
* priv - Reference to the driver state structure
* qid - The transfer queue to send packets on
*
* Returned Value:
* None
*
* Assumptions:
* Global interrupts are disabled by interrupt handling logic.
*
****************************************************************************/
static void sam_dopoll(struct sam_emac_s *priv, int qid)
{
struct net_driver_s *dev = &priv->dev;
* TX poll if we do not have buffering for another packet.
*/
if (sam_txfree(priv, qid) > 0)
{
* then poll the network for new XMIT data.
*/
devif_poll(dev, sam_txpoll);
}
}
* Function: sam_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
* qid - The transfer queue to receive the frame
*
* 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 sam_recvframe(struct sam_emac_s *priv, int qid)
{
volatile struct emac_rxdesc_s *rxdesc;
struct sam_queue_s *xfrq;
struct net_driver_s *dev;
const uint8_t *src;
uint8_t *dest;
uint32_t rxndx;
uint32_t pktlen;
uint16_t copylen;
bool isframe;
* once it has successfully written a frame to memory.
*/
dev = &priv->dev;
dev->d_len = 0;
dest = dev->d_buf;
pktlen = 0;
xfrq = &priv->xfrq[qid];
rxndx = xfrq->rxndx;
rxdesc = &xfrq->rxdesc[rxndx];
isframe = false;
up_invalidate_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc + sizeof(struct emac_rxdesc_s));
ninfo("Entry rxndx[%d]: %" PRId32 "\n", qid, rxndx);
while ((rxdesc->addr & EMACRXD_ADDR_OWNER) != 0)
{
NETDEV_RXFRAGMENTS(&priv->dev);
* any previous fragments.
*/
if ((rxdesc->status & EMACRXD_STA_SOF) != 0)
{
* start fragment until it is equal to the index with the SOF mark
*/
while (rxndx != xfrq->rxndx)
{
rxdesc = &xfrq->rxdesc[xfrq->rxndx];
rxdesc->addr &= ~(EMACRXD_ADDR_OWNER);
up_clean_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc +
sizeof(struct emac_rxdesc_s));
if (++xfrq->rxndx >= xfrq->nrxbuffers)
{
xfrq->rxndx = 0;
}
}
dest = dev->d_buf;
pktlen = 0;
isframe = true;
}
* in this frame (or, if the LAST bit was set, to the first fragment
* of the next frame).
*/
if (++rxndx >= xfrq->nrxbuffers)
{
rxndx = 0;
}
if (isframe)
{
if (rxndx == xfrq->rxndx)
{
nerr("ERROR: No EOF (Invalid or buffers too small)\n");
do
{
rxdesc = &xfrq->rxdesc[xfrq->rxndx];
rxdesc->addr &= ~(EMACRXD_ADDR_OWNER);
up_clean_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc +
sizeof(struct emac_rxdesc_s));
if (++xfrq->rxndx >= xfrq->nrxbuffers)
{
xfrq->rxndx = 0;
}
}
while (rxndx != xfrq->rxndx);
NETDEV_RXERRORS(&priv->dev);
return -EIO;
}
copylen = EMAC_RX_UNITSIZE;
if ((pktlen + copylen) > CONFIG_NET_ETH_PKTSIZE)
{
copylen = CONFIG_NET_ETH_PKTSIZE - pktlen;
}
* force reload from RAM.
*/
src = (const uint8_t *)(rxdesc->addr & EMACRXD_ADDR_MASK);
up_invalidate_dcache((uintptr_t)src, (uintptr_t)src + copylen);
* wanted to support zero copy transfers, we would need to make
* sure that dev->d_buf and rxdesc->addr refer to the same memory.
*/
memcpy(dest, src, copylen);
dest += copylen;
pktlen += copylen;
if ((rxdesc->status & EMACRXD_STA_EOF) != 0)
{
dev->d_len = (rxdesc->status & EMACRXD_STA_FRLEN_MASK);
ninfo("packet %d-%" PRId32 " (%d)\n",
xfrq->rxndx, rxndx, dev->d_len);
* release the RX descriptor(s). Loop until all descriptors
* have been released up to the start of the next frame.
*/
while (xfrq->rxndx != rxndx)
{
rxdesc = &xfrq->rxdesc[xfrq->rxndx];
rxdesc->addr &= ~(EMACRXD_ADDR_OWNER);
up_clean_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc +
sizeof(struct emac_rxdesc_s));
* released.
*/
if (++xfrq->rxndx >= xfrq->nrxbuffers)
{
xfrq->rxndx = 0;
}
}
* all of the data.
*/
ninfo("rxndx: %d d_len: %d\n",
xfrq->rxndx, dev->d_len);
if (pktlen < dev->d_len)
{
nerr("ERROR: Buffer size %d; frame size %" PRId32 "\n",
dev->d_len, pktlen);
NETDEV_RXERRORS(&priv->dev);
return -E2BIG;
}
return OK;
}
}
* SOF yet... discard this fragment and keep looking starting at the
* next fragment.
*/
else
{
rxdesc->addr &= ~(EMACRXD_ADDR_OWNER);
up_clean_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc +
sizeof(struct emac_rxdesc_s));
* Use it to update the candidate Start-of-Frame.
*/
xfrq->rxndx = rxndx;
}
* associated with the next fragment.
*/
rxdesc = &xfrq->rxdesc[rxndx];
up_invalidate_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc + sizeof(struct emac_rxdesc_s));
}
* 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)
{
xfrq->rxndx = rxndx;
}
ninfo("Exit rxndx[%d]: %d\n", qid, xfrq->rxndx);
return -EAGAIN;
}
* Function: sam_receive
*
* Description:
* An interrupt was received indicating the availability of one or more
* new RX packets in FIFO memory.
*
* Input Parameters:
* priv - Reference to the driver state structure
* qid - The transfer queue on which the packet was received
*
* Returned Value:
* None
*
* Assumptions:
* Global interrupts are disabled by interrupt handling logic.
*
****************************************************************************/
static void sam_receive(struct sam_emac_s *priv, int qid)
{
struct net_driver_s *dev = &priv->dev;
* EMAC frames.
*/
while (sam_recvframe(priv, qid) == OK)
{
sam_dumppacket("Received packet", dev->d_buf, dev->d_len);
NETDEV_RXPACKETS(&priv->dev);
* configuration (this should not happen)
*/
if (dev->d_len > CONFIG_NET_ETH_PKTSIZE)
{
nwarn("WARNING: Dropped, Too big: %d\n", dev->d_len);
NETDEV_RXERRORS(&priv->dev);
continue;
}
#ifdef CONFIG_NET_PKT
pkt_input(&priv->dev);
#endif
#ifdef CONFIG_NET_IPv4
if (BUF->type == HTONS(ETHTYPE_IP))
{
ninfo("IPv4 frame\n");
NETDEV_RXIPV4(&priv->dev);
ipv4_input(&priv->dev);
* sent out on the network, d_len field will set to a value > 0.
*/
if (priv->dev.d_len > 0)
{
sam_transmit(priv, qid);
}
}
else
#endif
#ifdef CONFIG_NET_IPv6
if (BUF->type == HTONS(ETHTYPE_IP6))
{
ninfo("IPv6 frame\n");
NETDEV_RXIPV6(&priv->dev);
ipv6_input(&priv->dev);
* sent out on the network, d_len field will set to a value > 0.
*/
if (priv->dev.d_len > 0)
{
sam_transmit(priv, qid);
}
}
else
#endif
#ifdef CONFIG_NET_ARP
if (BUF->type == HTONS(ETHTYPE_ARP))
{
ninfo("ARP frame\n");
NETDEV_RXARP(&priv->dev);
arp_input(&priv->dev);
* sent out on the network, d_len field will set to a value > 0.
*/
if (priv->dev.d_len > 0)
{
sam_transmit(priv, qid);
}
}
else
#endif
{
nwarn("WARNING: Dropped, Unknown type: %04x\n", BUF->type);
NETDEV_RXDROPPED(&priv->dev);
}
}
}
* Function: sam_txdone
*
* Description:
* An interrupt was received indicating that one or more frames have
* completed transmission.
*
* Input Parameters:
* priv - Reference to the driver state structure
* qid - The transfer queue on which the packet was sent
*
* Returned Value:
* None
*
* Assumptions:
* Global interrupts are disabled by the watchdog logic.
*
****************************************************************************/
static void sam_txdone(struct sam_emac_s *priv, int qid)
{
struct emac_txdesc_s *txdesc;
struct sam_queue_s *xfrq;
uint16_t tail;
* the TX descriptors have been examined, or (2) until we encounter the
* first descriptor that is still in use by the hardware.
*/
xfrq = &priv->xfrq[qid];
tail = xfrq->txtail;
while (tail != xfrq->txhead)
{
txdesc = &xfrq->txdesc[tail];
up_invalidate_dcache((uintptr_t)txdesc,
(uintptr_t)txdesc + sizeof(struct emac_txdesc_s));
* completion, the GMAC sets the USED bit only into the very first
* buffer descriptor of the sent frame. Otherwise it updates this
* descriptor with status error bits.
*/
if ((txdesc->status & EMACTXD_STA_USED) == 0)
{
break;
}
NETDEV_TXDONE(&priv->dev);
while (tail != xfrq->txhead &&
(txdesc->status & EMACTXD_STA_LAST) == 0)
{
if (++tail >= xfrq->ntxbuffers)
{
tail = 0;
}
txdesc = &xfrq->txdesc[tail];
up_invalidate_dcache((uintptr_t)txdesc,
(uintptr_t)txdesc + sizeof(struct emac_txdesc_s));
}
if (tail != xfrq->txhead &&
++tail >= xfrq->ntxbuffers)
{
tail = 0;
}
* RX interrupts may previously have been disabled when we ran out of
* TX descriptors (see comments in sam_transmit()).
*/
sam_putreg(priv, SAM_EMAC_IER_OFFSET, EMAC_RX_INTS);
}
xfrq->txtail = tail;
sam_dopoll(priv, qid);
}
* Function: sam_txerr_interrupt
*
* Description:
* TX error interrupt processing.
*
* Input Parameters:
* priv - Reference to the driver state structure
* quid - Index of the transfer queue that generated the interrupt
*
* Returned Value:
* None
*
* Assumptions:
* Ethernet interrupts are disabled
*
****************************************************************************/
static void sam_txerr_interrupt(struct sam_emac_s *priv, int qid)
{
struct emac_txdesc_s *txdesc;
struct sam_queue_s *xfrq;
uint32_t regval;
uint16_t tail;
NETDEV_TXERRORS(&priv->dev);
* workaround to recover from TX lockups that occurred on the sama5d3 gmac
* (r1p24f2) when using scatter-gather. This issue has never been
* seen on sama5d4 gmac (r1p31).
*/
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_TXEN;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
* directly by the IRQ handler. Indeed, according to Cadence
* documentation, the transmission is halted on errors such as
* too many retries or transmit under run. However it would become
* mandatory if the call of this function were scheduled as a task by
* the IRQ handler (this is how Linux driver works). Then this function
* might compete with GMACD_Send().
*
* Setting bit 10, tx_halt, of the Network Control Register is not enough:
* We should wait for bit 3, tx_go, of the Transmit Status Register to
* be cleared at transmit completion if a frame is being transmitted.
*/
regval |= EMAC_NCR_THALT;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
while ((sam_getreg(priv, SAM_EMAC_TSR_OFFSET) & EMAC_TSR_TXGO) != 0);
xfrq = &priv->xfrq[qid];
tail = xfrq->txtail;
while (tail != xfrq->txhead)
{
txdesc = &xfrq->txdesc[tail];
up_invalidate_dcache((uintptr_t)txdesc,
(uintptr_t)txdesc + sizeof(struct emac_txdesc_s));
while (tail != xfrq->txhead &&
(txdesc->status & EMACTXD_STA_LAST) == 0)
{
if (++tail >= xfrq->ntxbuffers)
{
tail = 0;
}
txdesc = &xfrq->txdesc[tail];
up_invalidate_dcache((uintptr_t)txdesc,
(uintptr_t)txdesc + sizeof(struct emac_txdesc_s));
}
if (tail != xfrq->txhead &&
++tail >= xfrq->ntxbuffers)
{
tail = 0;
}
}
xfrq->txtail = tail;
sam_txreset(priv, qid);
regval = sam_getreg(priv, SAM_EMAC_TSR_OFFSET);
sam_putreg(priv, SAM_EMAC_TSR_OFFSET, regval);
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_TXEN;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
* RX interrupts may previously have been disabled when we ran out of
* TX descriptors (see comments in sam_transmit()).
*/
sam_putreg(priv, SAM_EMAC_IER_OFFSET, EMAC_RX_INTS);
sam_dopoll(priv, qid);
}
* Function: sam_interrupt_work
*
* Description:
* Perform interrupt related work from the worker thread.
*
* Input Parameters:
* arg - The argument passed when work_queue() was called.
*
* Returned Value:
* None
*
* Assumptions:
* Ethernet interrupts are disabled
*
****************************************************************************/
static void sam_interrupt_work(void *arg)
{
struct sam_emac_s *priv = (struct sam_emac_s *)arg;
uint32_t isr;
uint32_t rsr;
uint32_t tsr;
uint32_t imr;
uint32_t regval;
uint32_t pending;
uint32_t clrbits;
int qid = EMAC_QUEUE_0;
net_lock();
* NOTE that the interrupt status register is cleared by this read.
*/
isr = sam_getreg(priv, SAM_EMAC_ISR_OFFSET);
rsr = sam_getreg(priv, SAM_EMAC_RSR_OFFSET);
tsr = sam_getreg(priv, SAM_EMAC_TSR_OFFSET);
imr = sam_getreg(priv, SAM_EMAC_IMR_OFFSET);
pending = isr & ~(imr | EMAC_INT_UNUSED);
ninfo("isr: %08" PRIx32 " pending: %08" PRIx32 "\n", isr, pending);
*
* RXCOMP indicates that a packet has been received and stored in memory.
* The RXCOMP bit is cleared when the 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 & EMAC_RX_INTS) != 0 || (rsr & EMAC_RSR_REC) != 0)
{
clrbits = EMAC_RSR_REC;
*
* 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 & EMAC_RSR_RXOVR) != 0)
{
nerr("ERROR: Receiver overrun RSR: %08" PRIx32 "\n", rsr);
clrbits |= EMAC_RSR_RXOVR;
}
*
* 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 & EMAC_RSR_BNA) != 0)
{
nerr("ERROR: Buffer not available RSR: %08" PRIx32 "\n", rsr);
clrbits |= EMAC_RSR_BNA;
}
sam_putreg(priv, SAM_EMAC_RSR_OFFSET, clrbits);
sam_receive(priv, qid);
}
if ((pending & EMAC_TXERR_INTS) != 0)
{
sam_txerr_interrupt(priv, qid);
}
* 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:TXCOMP is set when a frame has been transmitted. Cleared by writing
* a one to this bit.
*/
if ((pending & EMAC_INT_TCOMP) != 0 || (tsr & EMAC_TSR_TXCOMP) != 0)
{
if ((tsr & EMAC_TSR_RLE) != 0)
{
clrbits = EMAC_TSR_RLE | sam_txinuse(priv, qid);
sam_txreset(priv, qid);
nerr("ERROR: Retry Limit Exceeded TSR: %08" PRIx32 "\n", tsr);
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_TXEN;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
}
if ((tsr & EMAC_TSR_COL) != 0)
{
nerr("ERROR: Collision occurred TSR: %08" PRIx32 "\n", tsr);
NETDEV_TXERRORS(&priv->dev);
}
if ((tsr & EMAC_TSR_TFC) != 0)
{
nerr("ERROR: Transmit Frame Corruption "
"due to AHB error: %08" PRIx32 "\n",
tsr);
NETDEV_TXERRORS(&priv->dev);
}
sam_putreg(priv, SAM_EMAC_TSR_OFFSET, tsr);
sam_txdone(priv, qid);
}
#ifdef CONFIG_DEBUG_NET
if ((pending & EMAC_INT_HRESP) != 0)
{
nerr("ERROR: Hresp not OK\n");
}
*
* ISR:PFRE indicates that a pause frame has been received with non-zero
* pause quantum. Cleared on a read.
*/
if ((pending & EMAC_INT_PFNZ) != 0)
{
ninfo("Pause frame received\n");
}
*
* ISR:PTZ is set Pause Time Zero
*/
if ((pending & EMAC_INT_PTZ) != 0)
{
ninfo("Pause TO!\n");
}
#endif
net_unlock();
up_enable_irq(priv->attr->irq);
}
* Function: sam_emac_interrupt
*
* Description:
* Common hardware interrupt handler.
*
* Input Parameters:
* priv - Reference to the EMAC private state structure
*
* Returned Value:
* OK on success
*
* Assumptions:
*
****************************************************************************/
static int sam_emac_interrupt(int irq, void *context, void *arg)
{
struct sam_emac_s *priv = (struct sam_emac_s *)arg;
uint32_t tsr;
DEBUGASSERT(priv != NULL);
* also disabled if the TX timeout event occurs, there can be no race
* condition here.
*/
up_disable_irq(priv->attr->irq);
*
* 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 = sam_getreg(priv, SAM_EMAC_TSR_OFFSET);
if ((tsr & EMAC_TSR_TXCOMP) != 0)
{
* there will be do race condition between any subsequent timeout
* expiration and the deferred interrupt processing.
*/
wd_cancel(&priv->txtimeout);
}
work_queue(ETHWORK, &priv->irqwork, sam_interrupt_work, priv, 0);
return OK;
}
* Function: sam_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 sam_txtimeout_work(void *arg)
{
struct sam_emac_s *priv = (struct sam_emac_s *)arg;
nerr("ERROR: Timeout!\n");
net_lock();
NETDEV_TXTIMEOUTS(&priv->dev);
sam_ifdown(&priv->dev);
sam_ifup(&priv->dev);
sam_dopoll(priv, EMAC_QUEUE_0);
net_unlock();
}
* Function: sam_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 sam_txtimeout_expiry(wdparm_t arg)
{
struct sam_emac_s *priv = (struct sam_emac_s *)arg;
* 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->attr->irq);
work_queue(ETHWORK, &priv->irqwork, sam_txtimeout_work, priv, 0);
}
* Function: sam_ifup
*
* Description:
* NuttX Callback: Bring up the EMAC interface when an IP address is
* provided
*
* Input Parameters:
* dev - Reference to the NuttX driver state structure
*
* Returned Value:
* None
*
* Assumptions:
*
****************************************************************************/
static int sam_ifup(struct net_driver_s *dev)
{
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
int ret;
#ifdef CONFIG_NET_IPv4
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));
#endif
#ifdef CONFIG_NET_IPv6
ninfo("Bringing up: %04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
dev->d_ipv6addr[0], dev->d_ipv6addr[1], dev->d_ipv6addr[2],
dev->d_ipv6addr[3], dev->d_ipv6addr[4], dev->d_ipv6addr[5],
dev->d_ipv6addr[6], dev->d_ipv6addr[7]);
#endif
ninfo("Initialize the EMAC\n");
sam_emac_configure(priv);
sam_queue_configure(priv, EMAC_QUEUE_1);
sam_queue_configure(priv, EMAC_QUEUE_2);
if (g_emac_nqueues > 3)
{
sam_queue_configure(priv, EMAC_QUEUE_3);
sam_queue_configure(priv, EMAC_QUEUE_4);
sam_queue_configure(priv, EMAC_QUEUE_5);
}
sam_queue0_configure(priv);
sam_macaddress(priv);
ret = sam_phyinit(priv);
if (ret < 0)
{
nerr("ERROR: sam_phyinit failed: %d\n", ret);
return ret;
}
ret = sam_autonegotiate(priv);
if (ret < 0)
{
nerr("ERROR: sam_autonegotiate failed: %d\n", ret);
return ret;
}
while (sam_linkup(priv) == 0);
ninfo("Link detected\n");
ninfo("Enable normal operation\n");
priv->ifup = true;
up_enable_irq(priv->attr->irq);
return OK;
}
* Function: sam_ifdown
*
* Description:
* NuttX Callback: Stop the interface.
*
* Input Parameters:
* dev - Reference to the NuttX driver state structure
*
* Returned Value:
* None
*
* Assumptions:
*
****************************************************************************/
static int sam_ifdown(struct net_driver_s *dev)
{
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
irqstate_t flags;
ninfo("Taking the network down\n");
flags = enter_critical_section();
up_disable_irq(priv->attr->irq);
wd_cancel(&priv->txtimeout);
* a known configuration that will guarantee the sam_ifup() always
* successfully brings the interface back up.
*/
sam_emac_reset(priv);
priv->ifup = false;
leave_critical_section(flags);
return OK;
}
* Function: sam_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 sam_txavail_work(void *arg)
{
struct sam_emac_s *priv = (struct sam_emac_s *)arg;
ninfo("ifup: %d\n", priv->ifup);
net_lock();
if (priv->ifup)
{
sam_dopoll(priv, EMAC_QUEUE_0);
}
net_unlock();
}
* Function: sam_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 sam_txavail(struct net_driver_s *dev)
{
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
* pending interrupt actions and we will have to ignore the Tx
* availability action.
*/
if (work_available(&priv->pollwork))
{
work_queue(ETHWORK, &priv->pollwork, sam_txavail_work, priv, 0);
}
return OK;
}
* Name: sam_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 sam_hashindx(const uint8_t *mac)
{
unsigned int ndx;
* ... 05 04 03 02 01 00]
*/
ndx = 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);
* ... 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);
* [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);
* ... 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];
* ... 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);
* ... 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);
* [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);
return ndx & 0x3f;
}
#endif
* Function: sam_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:
*
****************************************************************************/
#if defined(CONFIG_NET_MCASTGROUP) || defined(CONFIG_NET_ICMPv6)
static int sam_addmac(struct net_driver_s *dev, const uint8_t *mac)
{
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
uint32_t regval;
unsigned int regoffset;
unsigned int ndx;
unsigned int bit;
ninfo("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n",
mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
ndx = sam_hashindx(mac);
if (ndx >= 32)
{
regoffset = SAM_EMAC_HRT_OFFSET;
bit = 1 << (ndx - 32);
}
else
{
regoffset = SAM_EMAC_HRB_OFFSET;
bit = 1 << ndx;
}
regval = sam_getreg(priv, regoffset);
regval |= bit;
sam_putreg(priv, regoffset, regval);
* 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 = sam_getreg(priv, SAM_EMAC_NCFGR_OFFSET);
regval &= ~EMAC_NCFGR_UNIHEN;
regval |= EMAC_NCFGR_MTIHEN;
sam_putreg(priv, SAM_EMAC_NCFGR_OFFSET, regval);
return OK;
}
#endif
* Function: sam_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 sam_rmmac(struct net_driver_s *dev, const uint8_t *mac)
{
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
uint32_t regval;
unsigned int regoffset1;
unsigned int regoffset2;
unsigned int ndx;
unsigned int bit;
ninfo("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n",
mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
ndx = sam_hashindx(mac);
if (ndx >= 32)
{
regoffset1 = SAM_EMAC_HRT_OFFSET;
regoffset2 = SAM_EMAC_HRB_OFFSET;
bit = 1 << (ndx - 32);
}
else
{
regoffset1 = SAM_EMAC_HRB_OFFSET;
regoffset2 = SAM_EMAC_HRT_OFFSET;
bit = 1 << ndx;
}
regval = sam_getreg(priv, regoffset1);
regval &= ~bit;
sam_putreg(priv, regoffset1, regval);
* 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.
*/
if (regval == 0 && sam_getreg(priv, regoffset2) == 0)
{
regval = sam_getreg(priv, SAM_EMAC_NCFGR_OFFSET);
regval &= ~(EMAC_NCFGR_UNIHEN | EMAC_NCFGR_MTIHEN);
sam_putreg(priv, SAM_EMAC_NCFGR_OFFSET, regval);
}
return OK;
}
#endif
* Function: sam_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 sam_ioctl(struct net_driver_s *dev, int cmd, unsigned long arg)
{
#ifdef CONFIG_NETDEV_PHY_IOCTL
struct sam_emac_s *priv = (struct sam_emac_s *)dev->d_private;
#endif
int ret;
switch (cmd)
{
#ifdef CONFIG_NETDEV_PHY_IOCTL
#ifdef CONFIG_ARCH_PHY_INTERRUPT
case SIOCMIINOTIFY:
{
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)
{
ret = sam_phyintenable(priv);
}
}
break;
#endif
case SIOCGMIIPHY:
{
struct mii_ioctl_data_s *req =
(struct mii_ioctl_data_s *)((uintptr_t)arg);
req->phy_id = priv->phyaddr;
ret = OK;
}
break;
case SIOCGMIIREG:
{
struct mii_ioctl_data_s *req =
(struct mii_ioctl_data_s *)((uintptr_t)arg);
uint32_t regval;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval | EMAC_NCR_MPE);
ret = sam_phyread(priv, req->phy_id, req->reg_num, &req->val_out);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
}
break;
case SIOCSMIIREG:
{
struct mii_ioctl_data_s *req =
(struct mii_ioctl_data_s *)((uintptr_t)arg);
uint32_t regval;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval | EMAC_NCR_MPE);
ret = sam_phywrite(priv, req->phy_id, req->reg_num, req->val_in);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
}
break;
#endif
default:
ret = -ENOTTY;
break;
}
return ret;
}
#endif
* Function: sam_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 sam_phydump(struct sam_emac_s *priv)
{
uint32_t regval;
uint16_t phyval;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
ninfo("%s Registers (Address %02x)\n",
priv->attr->rmii ? "RMII" : "MII", priv->phyaddr);
sam_phyread(priv, priv->phyaddr, MII_MCR, &phyval);
ninfo(" MCR: %04x\n", phyval);
sam_phyread(priv, priv->phyaddr, MII_MSR, &phyval);
ninfo(" MSR: %04x\n", phyval);
sam_phyread(priv, priv->phyaddr, MII_ADVERTISE, &phyval);
ninfo(" ADVERTISE: %04x\n", phyval);
sam_phyread(priv, priv->phyaddr, MII_LPA, &phyval);
ninfo(" LPR: %04x\n", phyval);
sam_phyread(priv, priv->phyaddr, priv->attr->physr, &phyval);
ninfo(" PHYSR: %04x\n", phyval);
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
}
#endif
* Function: sam_is*
*
* Description:
* Helpers to simplify decoding PHY status register bits
*
* Input Parameters:
* physr - The value of the PHY status register
*
* Returned Value:
* True: The PHY configuration is selected; False; some other PHY
* configuration is selected.
*
****************************************************************************/
#if 0
static bool sam_is10hdx(struct sam_emac_s *priv, uint16_t physr)
{
uint16_t mask;
uint16_t match;
if (priv->attr->sralt)
{
mask = priv->attr->u.alt.altmask;
match = priv->attr->u.alt.hdx10;
}
else
{
mask = priv->attr->u.std.stdmask;
match = 0;
}
return (physr & mask) == match;
}
#endif
static bool sam_is100hdx(struct sam_emac_s *priv, uint16_t physr)
{
uint16_t mask;
uint16_t match;
if (priv->attr->sralt)
{
mask = priv->attr->u.alt.altmask;
match = priv->attr->u.alt.hdx100;
}
else
{
mask = priv->attr->u.std.stdmask;
match = priv->attr->u.std.speed100;
}
return (physr & mask) == match;
}
static bool sam_is10fdx(struct sam_emac_s *priv, uint16_t physr)
{
uint16_t mask;
uint16_t match;
if (priv->attr->sralt)
{
mask = priv->attr->u.alt.altmask;
match = priv->attr->u.alt.fdx10;
}
else
{
mask = priv->attr->u.std.stdmask;
match = priv->attr->u.std.fduplex;
}
return (physr & mask) == match;
}
static bool sam_is100fdx(struct sam_emac_s *priv, uint16_t physr)
{
uint16_t mask;
uint16_t match;
if (priv->attr->sralt)
{
mask = priv->attr->u.alt.altmask;
match = priv->attr->u.alt.fdx100;
}
else
{
mask = priv->attr->u.std.stdmask;
match = (priv->attr->u.std.fduplex | priv->attr->u.std.speed100);
}
return (physr & mask) == match;
}
* Function: sam_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 sam_phyintenable(struct sam_emac_s *priv)
{
#if defined(SAMV7_EMAC0_PHY_KSZ8051) || defined(SAMV7_EMAC0_PHY_KSZ8061) || \
defined(SAMV7_EMAC0_PHY_KSZ8081) || \
defined(SAMV7_EMAC1_PHY_KSZ8051) || defined(SAMV7_EMAC1_PHY_KSZ8061) || \
defined(SAMV7_EMAC1_PHY_KSZ8081)
uint32_t regval;
uint16_t phyval;
int ret;
if (priv->phytype == SAMV7_PHY_KSZ8051 ||
priv->phytype == SAMV7_PHY_KSZ8061 ||
priv->phytype == SAMV7_PHY_KSZ8081)
{
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval | EMAC_NCR_MPE);
* interrupts
*/
ret = sam_phyread(priv, priv->phyaddr, MII_KSZ8081_INT, &phyval);
if (ret == OK)
{
ret = sam_phywrite(priv, priv->phyaddr, MII_KSZ8081_INT,
(MII_KSZ80X1_INT_LDEN | MII_KSZ80X1_INT_LUEN));
}
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
}
else
#endif
{
nerr("ERROR: Unsupported PHY type: %d\n", priv->phytype);
ret = -ENOSYS;
}
return ret;
}
#endif
* Function: sam_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 sam_phywait(struct sam_emac_s *priv)
{
volatile unsigned int retries;
for (retries = 0; retries < PHY_RETRY_MAX; retries++)
{
if ((sam_getreg(priv, SAM_EMAC_NSR_OFFSET) & EMAC_NSR_IDLE) != 0)
{
return OK;
}
}
return -ETIMEDOUT;
}
* Function: sam_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 sam_phyreset(struct sam_emac_s *priv)
{
uint32_t regval;
uint16_t mcr;
int timeout;
int ret;
ninfo(" sam_phyreset\n");
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
ret = sam_phywrite(priv, priv->phyaddr, MII_MCR, MII_MCR_RESET);
if (ret < 0)
{
nerr("ERROR: sam_phywrite failed: %d\n", ret);
}
ret = -ETIMEDOUT;
for (timeout = 0; timeout < 10; timeout++)
{
mcr = MII_MCR_RESET;
int result = sam_phyread(priv, priv->phyaddr, MII_MCR, &mcr);
if (result < 0)
{
nerr("ERROR: Failed to read the MCR register: %d\n", ret);
ret = result;
}
else if ((mcr & MII_MCR_RESET) == 0)
{
ret = OK;
break;
}
}
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
return ret;
}
* Function: sam_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 sam_phyfind(struct sam_emac_s *priv, uint8_t *phyaddr)
{
uint32_t regval;
uint16_t phyval;
uint8_t candidate;
unsigned int offset;
int ret = -ESRCH;
ninfo("Find a valid PHY address\n");
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
candidate = *phyaddr;
ret = sam_phyread(priv, candidate, MII_PHYID1, &phyval);
if (ret == OK && phyval == priv->attr->msoui)
{
*phyaddr = candidate;
ret = OK;
}
else
{
nerr("ERROR: sam_phyread failed for PHY address %02x: %d\n",
candidate, ret);
for (offset = 0; offset < 32; offset++)
{
candidate = (candidate + 1) & 0x1f;
ret = sam_phyread(priv, candidate, MII_PHYID1, &phyval);
if (ret == OK && phyval == priv->attr->msoui)
{
ret = OK;
break;
}
}
}
if (ret == OK)
{
ninfo(" PHYID1: %04x PHY addr: %d\n", phyval, candidate);
*phyaddr = candidate;
sam_phyread(priv, candidate, priv->attr->physr, &phyval);
ninfo(" PHYSR: %04x PHY addr: %d\n", phyval, candidate);
}
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
return ret;
}
* Function: sam_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:
*
****************************************************************************/
static int sam_phyread(struct sam_emac_s *priv, uint8_t phyaddr,
uint8_t regaddr, uint16_t *phyval)
{
uint32_t regval;
int ret;
ret = sam_phywait(priv);
if (ret < 0)
{
nerr("ERROR: sam_phywait failed: %d\n", ret);
return ret;
}
regval = EMAC_MAN_DATA(0) | EMAC_MAN_WTN | EMAC_MAN_REGA(regaddr) |
EMAC_MAN_PHYA(phyaddr) | EMAC_MAN_READ | EMAC_MAN_WZO;
if (!priv->attr->clause45)
{
* bit 30 should be written with a 0 rather than a 1.
*/
regval |= EMAC_MAN_CLTTO;
}
sam_putreg(priv, SAM_EMAC_MAN_OFFSET, regval);
ret = sam_phywait(priv);
if (ret < 0)
{
nerr("ERROR: sam_phywait failed: %d\n", ret);
return ret;
}
*phyval = sam_getreg(priv, SAM_EMAC_MAN_OFFSET) & EMAC_MAN_DATA_MASK;
return OK;
}
* Function: sam_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:
*
****************************************************************************/
static int sam_phywrite(struct sam_emac_s *priv, uint8_t phyaddr,
uint8_t regaddr, uint16_t phyval)
{
uint32_t regval;
int ret;
ret = sam_phywait(priv);
if (ret < 0)
{
nerr("ERROR: sam_phywait failed: %d\n", ret);
return ret;
}
regval = EMAC_MAN_DATA(phyval) | EMAC_MAN_WTN | EMAC_MAN_REGA(regaddr) |
EMAC_MAN_PHYA(phyaddr) | EMAC_MAN_WRITE | EMAC_MAN_WZO;
if (!priv->attr->clause45)
{
* bit 30 should be written with a 0 rather than a 1.
*/
regval |= EMAC_MAN_CLTTO;
}
sam_putreg(priv, SAM_EMAC_MAN_OFFSET, regval);
ret = sam_phywait(priv);
if (ret < 0)
{
nerr("ERROR: sam_phywait failed: %d\n", ret);
return ret;
}
return OK;
}
* Function: sam_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.
*
****************************************************************************/
static int sam_autonegotiate(struct sam_emac_s *priv)
{
uint32_t regval;
uint32_t ncr;
uint16_t phyid1;
uint16_t phyid2;
uint16_t mcr;
uint16_t msr;
uint16_t advertise;
uint16_t lpa;
int timeout;
int ret;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
ret = sam_phyread(priv, priv->phyaddr, MII_PHYID1, &phyid1);
if (ret < 0)
{
nerr("ERROR: Failed to read PHYID1\n");
goto errout;
}
ninfo("PHYID1: %04x PHY address: %02x\n", phyid1, priv->phyaddr);
ret = sam_phyread(priv, priv->phyaddr, MII_PHYID2, &phyid2);
if (ret < 0)
{
nerr("ERROR: Failed to read PHYID2\n");
goto errout;
}
ninfo("PHYID2: %04x PHY address: %02x\n", phyid2, priv->phyaddr);
if (phyid1 == priv->attr->msoui &&
((phyid2 & MII_PHYID2_OUI_MASK) >> MII_PHYID2_OUI_SHIFT) ==
(uint16_t)priv->attr->lsoui)
{
ninfo(" Vendor Model Number: %04x\n",
(phyid2 & MII_PHYID2_MODEL_MASK) >> MII_PHYID2_MODEL_SHIFT);
ninfo(" Model Revision Number: %04x\n",
(phyid2 & MII_PHYID2_REV_MASK) >> MII_PHYID2_REV_SHIFT);
}
else
{
nerr("ERROR: PHY not recognized\n");
}
ret = sam_phyread(priv, priv->phyaddr, MII_MCR, &mcr);
if (ret < 0)
{
nerr("ERROR: Failed to read MCR\n");
goto errout;
}
mcr &= ~MII_MCR_ANENABLE;
mcr &= ~(MII_MCR_LOOPBACK | MII_MCR_PDOWN);
mcr |= MII_MCR_ISOLATE;
ret = sam_phywrite(priv, priv->phyaddr, MII_MCR, mcr);
if (ret < 0)
{
nerr("ERROR: Failed to write MCR\n");
goto errout;
}
* Next page 100BaseTxFD and HD, 10BaseTFD and HD, IEEE 802.3
*/
advertise = MII_ADVERTISE_100BASETXFULL | MII_ADVERTISE_100BASETXHALF |
MII_ADVERTISE_10BASETXFULL | MII_ADVERTISE_10BASETXHALF |
MII_ADVERTISE_8023;
ret = sam_phywrite(priv, priv->phyaddr, MII_ADVERTISE, advertise);
if (ret < 0)
{
nerr("ERROR: Failed to write ANAR\n");
goto errout;
}
ret = sam_phyread(priv, priv->phyaddr, MII_MCR, &mcr);
if (ret < 0)
{
nerr("ERROR: Failed to read MCR\n");
goto errout;
}
mcr |= (MII_MCR_SPEED100 | MII_MCR_ANENABLE | MII_MCR_FULLDPLX);
ret = sam_phywrite(priv, priv->phyaddr, MII_MCR, mcr);
if (ret < 0)
{
nerr("ERROR: Failed to write MCR\n");
goto errout;
}
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
if (priv->phytype == SAMV7_PHY_KSZ8061)
{
ret = sam_phywrite(priv, priv->phyaddr, MII_MMDCONTROL, 0x0001);
if (ret < 0)
{
nerr("ERROR: Failed to write MMDCONTROL\n");
goto errout;
}
ret = sam_phywrite(priv, priv->phyaddr, MII_MMDADDRDATA, 0x0002);
if (ret < 0)
{
nerr("ERROR: Failed to write MMDADDRDATA\n");
goto errout;
}
ret = sam_phywrite(priv, priv->phyaddr, MII_MMDCONTROL, 0x4001);
if (ret < 0)
{
nerr("ERROR: Failed to write MMDCONTROL\n");
goto errout;
}
ret = sam_phywrite(priv, priv->phyaddr, MII_MMDADDRDATA, 0xb61a);
if (ret < 0)
{
nerr("ERROR: Failed to write MMDADDRDATA\n");
goto errout;
}
}
#endif
mcr |= MII_MCR_ANRESTART;
mcr &= ~MII_MCR_ISOLATE;
ret = sam_phywrite(priv, priv->phyaddr, MII_MCR, mcr);
if (ret < 0)
{
nerr("ERROR: Failed to write MCR\n");
goto errout;
}
ninfo(" MCR: %04x\n", mcr);
timeout = 0;
for (; ; )
{
ret = sam_phyread(priv, priv->phyaddr, MII_MSR, &msr);
if (ret < 0)
{
nerr("ERROR: Failed to read MSR\n");
goto errout;
}
if ((msr & MII_MSR_ANEGCOMPLETE) != 0)
{
ninfo("AutoNegotiate complete\n");
break;
}
if (++timeout >= PHY_RETRY_MAX)
{
nerr("ERROR: TimeOut\n");
sam_phydump(priv);
ret = -ETIMEDOUT;
goto errout;
}
}
ret = sam_phyread(priv, priv->phyaddr, MII_LPA, &lpa);
if (ret < 0)
{
nerr("ERROR: Failed to read ANLPAR\n");
goto errout;
}
regval = sam_getreg(priv, SAM_EMAC_NCFGR_OFFSET);
regval &= ~(EMAC_NCFGR_SPD | EMAC_NCFGR_FD);
if (((advertise & lpa) & MII_ADVERTISE_100BASETXFULL) != 0)
{
regval |= (EMAC_NCFGR_SPD | EMAC_NCFGR_FD);
}
else if (((advertise & lpa) & MII_ADVERTISE_10BASETXFULL) != 0)
{
regval |= EMAC_NCFGR_FD;
}
else if (((advertise & lpa) & MII_ADVERTISE_100BASETXHALF) != 0)
{
regval |= EMAC_NCFGR_SPD;
}
#if 0
else if (((advertise & lpa) & MII_ADVERTISE_10BASETXHALF) != 0)
{
}
#endif
sam_putreg(priv, SAM_EMAC_NCFGR_OFFSET, regval);
ncr = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET,
ncr & ~(EMAC_NCR_TXEN | EMAC_NCR_RXEN));
regval = sam_getreg(priv, SAM_EMAC_UR_OFFSET);
regval &= ~EMAC_UR_RMII;
if (!priv->attr->rmii)
{
regval |= EMAC_UR_RMII;
}
sam_putreg(priv, SAM_EMAC_UR_OFFSET, regval);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, ncr);
errout:
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
return ret;
}
* Function: sam_linkup
*
* Description:
* Check if the link is up
*
* Input Parameters:
* priv - A reference to the private driver state structure
*
* Returned Value:
* true: The link is up
*
****************************************************************************/
static bool sam_linkup(struct sam_emac_s *priv)
{
uint32_t regval;
uint16_t msr;
uint16_t physr;
bool linkup = false;
int ret;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
ret = sam_phyread(priv, priv->phyaddr, MII_MSR, &msr);
if (ret < 0)
{
nerr("ERROR: Failed to read MSR: %d\n", ret);
goto errout;
}
if ((msr & MII_MSR_LINKSTATUS) == 0)
{
nerr("ERROR: MSR LinkStatus: %04x\n", msr);
goto errout;
}
ret = sam_phyread(priv, priv->phyaddr, priv->attr->physr, &physr);
if (ret < 0)
{
nerr("ERROR: Failed to read PHYSR: %d\n", ret);
goto errout;
}
regval = sam_getreg(priv, SAM_EMAC_NCFGR_OFFSET);
regval &= ~(EMAC_NCFGR_SPD | EMAC_NCFGR_FD);
if ((msr & MII_MSR_100BASETXFULL) != 0 && sam_is100fdx(priv, physr))
{
regval |= (EMAC_NCFGR_SPD | EMAC_NCFGR_FD);
}
else if ((msr & MII_MSR_10BASETXFULL) != 0 && sam_is10fdx(priv, physr))
{
regval |= EMAC_NCFGR_FD;
}
else if ((msr & MII_MSR_100BASETXHALF) != 0 && sam_is100hdx(priv, physr))
{
regval |= EMAC_NCFGR_SPD;
}
#if 0
else if ((msr & MII_MSR_10BASETXHALF) != 0 && sam_is10hdx(priv, physr))
{
}
#endif
sam_putreg(priv, SAM_EMAC_NCFGR_OFFSET, regval);
ninfo("Link is up\n");
linkup = true;
errout:
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_MPE;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
return linkup;
}
* Function: sam_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 sam_phyinit(struct sam_emac_s *priv)
{
uint32_t regval;
uint32_t mck;
int ret;
regval = sam_getreg(priv, SAM_EMAC_NCFGR_OFFSET);
regval &= ~EMAC_NCFGR_CLK_MASK;
mck = BOARD_MCK_FREQUENCY;
if (mck > (240 * 1000 * 1000))
{
nerr("ERROR: Cannot realize PHY clock\n");
return -EINVAL;
}
else if (mck > (160 * 1000 * 1000))
{
regval |= EMAC_NCFGR_CLK_DIV96;
}
else if (mck > (120 * 1000 * 1000))
{
regval |= EMAC_NCFGR_CLK_DIV64;
}
else if (mck > (80 * 1000 * 1000))
{
regval |= EMAC_NCFGR_CLK_DIV48;
}
else if (mck > (40 * 1000 * 1000))
{
regval |= EMAC_NCFGR_CLK_DIV32;
}
else if (mck > (20 * 1000 * 1000))
{
regval |= EMAC_NCFGR_CLK_DIV16;
}
else
{
regval |= EMAC_NCFGR_CLK_DIV8;
}
#ifdef CONFIG_SAMV7_EMAC0_PHYINIT
if (priv->attr->emac == EMAC0_INTF)
{
ret = sam_phy_boardinitialize(0);
if (ret < 0)
{
nerr("ERROR: Failed to initialize the PHY: %d\n", ret);
return ret;
}
}
#endif
#ifdef CONFIG_SAMV7_EMAC1_PHYINIT
if (priv->attr->emac == EMAC1_INTF)
{
ret = sam_phy_boardinitialize(1);
if (ret < 0)
{
nerr("ERROR: Failed to initialize the PHY: %d\n", ret);
return ret;
}
}
#endif
sam_putreg(priv, SAM_EMAC_NCFGR_OFFSET, regval);
priv->phyaddr = priv->attr->phyaddr;
ret = sam_phyfind(priv, &priv->phyaddr);
if (ret < 0)
{
nerr("ERROR: sam_phyfind failed: %d\n", ret);
return ret;
}
if (priv->phyaddr != priv->attr->phyaddr)
{
sam_phyreset(priv);
}
return OK;
}
* Function: sam_ethgpioconfig
*
* Description:
* Configure PIOs for the EMAC0/1 RMII/MII interface.
*
* Signal Name Function MII RMII
* -------- --------------------------------- -------- -----------
* TXCK Transmit Clock or Reference Clock TXCK REFCK
* TXEN Transmit Enable TXEN TXEN
* TX[3..0] Transmit Data TXD[3:0] TXD[1:0]
* TXER Transmit Coding Error TXER Not Used
* RXCK Receive Clock RXCK Not Used
* RXDV Receive Data Valid RXDV CRSDV
* RX[3..0] Receive Data RXD[3:0] RXD[1:0]
* RXER Receive Error RXER RXER
* CRS Carrier Sense and Data Valid CRS Not Used
* COL Collision Detect COL Not Used
* MDC Management Data Clock MDC MDC
* MDIO Management Data Input/Output MDIO MDIO
*
* Input Parameters:
* priv - A reference to the private driver state structure
*
* Returned Value:
* None.
*
* Assumptions:
*
****************************************************************************/
static inline void sam_ethgpioconfig(struct sam_emac_s *priv)
{
#if defined(CONFIG_SAMV7_EMAC0)
if (priv->attr->emac == EMAC0_INTF)
{
sam_configgpio(GPIO_EMAC0_TXCK);
sam_configgpio(GPIO_EMAC0_TXEN);
sam_configgpio(GPIO_EMAC0_TX0);
sam_configgpio(GPIO_EMAC0_TX1);
sam_configgpio(GPIO_EMAC0_RXDV);
sam_configgpio(GPIO_EMAC0_RX0);
sam_configgpio(GPIO_EMAC0_RX1);
sam_configgpio(GPIO_EMAC0_RXER);
sam_configgpio(GPIO_EMAC0_MDC);
sam_configgpio(GPIO_EMAC0_MDIO);
if (!priv->attr->rmii)
{
sam_configgpio(GPIO_EMAC0_TX2);
sam_configgpio(GPIO_EMAC0_TX3);
sam_configgpio(GPIO_EMAC0_TXER);
sam_configgpio(GPIO_EMAC0_RXCK);
sam_configgpio(GPIO_EMAC0_RX2);
sam_configgpio(GPIO_EMAC0_RX3);
sam_configgpio(GPIO_EMAC0_CRS);
sam_configgpio(GPIO_EMAC0_COL);
}
}
else
#endif
#if defined(CONFIG_SAMV7_EMAC1)
if (priv->attr->emac == EMAC1_INTF)
{
sam_configgpio(GPIO_EMAC1_TXCK);
sam_configgpio(GPIO_EMAC1_TXEN);
sam_configgpio(GPIO_EMAC1_TX0);
sam_configgpio(GPIO_EMAC1_TX1);
sam_configgpio(GPIO_EMAC1_RXDV);
sam_configgpio(GPIO_EMAC1_RX0);
sam_configgpio(GPIO_EMAC1_RX1);
sam_configgpio(GPIO_EMAC1_RXER);
sam_configgpio(GPIO_EMAC1_MDC);
sam_configgpio(GPIO_EMAC1_MDIO);
if (!priv->attr->rmii)
{
sam_configgpio(GPIO_EMAC1_TX2);
sam_configgpio(GPIO_EMAC1_TX3);
sam_configgpio(GPIO_EMAC1_TXER);
sam_configgpio(GPIO_EMAC1_RXCK);
sam_configgpio(GPIO_EMAC1_RX2);
sam_configgpio(GPIO_EMAC1_RX3);
sam_configgpio(GPIO_EMAC1_CRS);
sam_configgpio(GPIO_EMAC1_COL);
}
}
else
#endif
{
nerr("ERROR: emac=%d\n", priv->attr->emac);
}
}
* Function: sam_txreset
*
* Description:
* Reset the transmit logic
*
* Input Parameters:
* priv - A reference to the private driver state structure
* qid - Identifies the queue to be reset
*
* Returned Value:
* None.
*
* Assumptions:
*
****************************************************************************/
static void sam_txreset(struct sam_emac_s *priv, int qid)
{
struct emac_txdesc_s *txdesc;
struct sam_queue_s *xfrq;
uint8_t *txbuffer;
uintptr_t bufaddr;
uintptr_t regaddr;
uint32_t regval;
int ndx;
xfrq = &priv->xfrq[qid];
txdesc = xfrq->txdesc;
txbuffer = xfrq->txbuffer;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_TXEN;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
xfrq->txhead = 0;
xfrq->txtail = 0;
for (ndx = 0; ndx < xfrq->ntxbuffers; ndx++)
{
bufaddr = (uintptr_t)&txbuffer[ndx * xfrq->txbufsize];
* as in used by firmware
*/
txdesc[ndx].addr = bufaddr;
txdesc[ndx].status = EMACTXD_STA_USED;
}
txdesc[xfrq->ntxbuffers - 1].status = EMACTXD_STA_USED | EMACTXD_STA_WRAP;
up_clean_dcache((uintptr_t)txdesc,
(uintptr_t)txdesc +
xfrq->ntxbuffers * sizeof(struct emac_txdesc_s));
regaddr = qid ? SAM_EMAC_ISRPQ_TBQBAPQ_OFFSET(qid) : SAM_EMAC_TBQB_OFFSET;
sam_putreg(priv, regaddr, (uint32_t)txdesc);
}
* Function: sam_rxreset
*
* Description:
* Reset the receive logic
*
* Input Parameters:
* priv - A reference to the private driver state structure
* qid - The transfer queue to be reset
*
* Returned Value:
* None.
*
* Assumptions:
*
****************************************************************************/
static void sam_rxreset(struct sam_emac_s *priv, int qid)
{
struct emac_rxdesc_s *rxdesc;
struct sam_queue_s *xfrq;
uint8_t *rxbuffer;
uintptr_t bufaddr;
uintptr_t regaddr;
uint32_t regval;
int ndx;
xfrq = &priv->xfrq[qid];
rxdesc = xfrq->rxdesc;
rxbuffer = xfrq->rxbuffer;
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~EMAC_NCR_RXEN;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
xfrq->rxndx = 0;
for (ndx = 0; ndx < xfrq->nrxbuffers; ndx++)
{
bufaddr = (uintptr_t)&rxbuffer[ndx * xfrq->rxbufsize];
DEBUGASSERT((bufaddr & ~EMACRXD_ADDR_MASK) == 0);
* EMACRXD_ADDR_WRAP.
*/
rxdesc[ndx].addr = bufaddr;
rxdesc[ndx].status = 0;
}
rxdesc[xfrq->nrxbuffers - 1].addr |= EMACRXD_ADDR_WRAP;
up_clean_dcache((uintptr_t)rxdesc,
(uintptr_t)rxdesc +
xfrq->nrxbuffers * sizeof(struct emac_rxdesc_s));
regaddr = qid ? SAM_EMAC_ISRPQ_RBQBAPQ_OFFSET(qid) : SAM_EMAC_RBQB_OFFSET;
sam_putreg(priv, regaddr, (uint32_t)rxdesc);
}
* Function: sam_emac_enableclk
*
* Description:
* Enable clocking to the EMAC block
*
* Input Parameters:
* priv - A reference to the private driver state structure
*
* Returned Value:
* None.
*
* Assumptions:
*
****************************************************************************/
static void sam_emac_enableclk(struct sam_emac_s *priv)
{
#if defined(CONFIG_SAMV7_EMAC0) && defined(CONFIG_SAMV7_EMAC1)
if (priv->attr->emac == EMAC0_INTF)
{
sam_emac0_enableclk();
}
else
{
sam_emac1_enableclk();
}
#elif defined(CONFIG_SAMV7_EMAC0)
sam_emac0_enableclk();
#else
sam_emac1_enableclk();
#endif
}
* Function: sam_emac_disableclk
*
* Description:
* Disable clocking to the EMAC block
*
* Input Parameters:
* priv - A reference to the private driver state structure
*
* Returned Value:
* None.
*
* Assumptions:
*
****************************************************************************/
#ifndef CONFIG_NETDEV_PHY_IOCTL
static void sam_emac_disableclk(struct sam_emac_s *priv)
{
#if defined(CONFIG_SAMV7_EMAC0) && defined(CONFIG_SAMV7_EMAC1)
if (priv->attr->emac == EMAC0_INTF)
{
sam_emac0_disableclk();
}
else
{
sam_emac1_disableclk();
}
#elif defined(CONFIG_SAMV7_EMAC0)
sam_emac0_disableclk();
#else
sam_emac1_disableclk();
#endif
}
#endif
* Function: sam_emac_reset
*
* Description:
* Reset the EMAC block.
*
* Input Parameters:
* priv - A reference to the private driver state structure
*
* Returned Value:
* None.
*
* Assumptions:
*
****************************************************************************/
static void sam_emac_reset(struct sam_emac_s *priv)
{
#ifdef CONFIG_NETDEV_PHY_IOCTL
uint32_t regval;
* then we cannot communicate with the PHY. So, instead, just disable
* interrupts, cancel timers, and disable TX and RX.
*/
sam_putreg(priv, SAM_EMAC_IDR_OFFSET, EMAC_INT_ALL);
sam_rxreset(priv, EMAC_QUEUE_0);
sam_rxreset(priv, EMAC_QUEUE_1);
sam_rxreset(priv, EMAC_QUEUE_2);
if (g_emac_nqueues > 3)
{
sam_rxreset(priv, EMAC_QUEUE_3);
sam_rxreset(priv, EMAC_QUEUE_4);
sam_rxreset(priv, EMAC_QUEUE_5);
}
sam_txreset(priv, EMAC_QUEUE_0);
sam_txreset(priv, EMAC_QUEUE_1);
sam_txreset(priv, EMAC_QUEUE_2);
if (g_emac_nqueues > 3)
{
sam_txreset(priv, EMAC_QUEUE_3);
sam_txreset(priv, EMAC_QUEUE_4);
sam_txreset(priv, EMAC_QUEUE_5);
}
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval &= ~(EMAC_NCR_RXEN | EMAC_NCR_TXEN | EMAC_NCR_WESTAT);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
#else
sam_putreg(priv, SAM_EMAC_IDR_OFFSET, EMAC_INT_ALL);
sam_rxreset(priv, EMAC_QUEUE_0);
sam_rxreset(priv, EMAC_QUEUE_1);
sam_rxreset(priv, EMAC_QUEUE_2);
if (g_emac_nqueues > 3)
{
sam_rxreset(priv, EMAC_QUEUE_3);
sam_rxreset(priv, EMAC_QUEUE_4);
sam_rxreset(priv, EMAC_QUEUE_5);
}
sam_txreset(priv, EMAC_QUEUE_0);
sam_txreset(priv, EMAC_QUEUE_1);
sam_txreset(priv, EMAC_QUEUE_2);
if (g_emac_nqueues > 3)
{
sam_txreset(priv, EMAC_QUEUE_3);
sam_txreset(priv, EMAC_QUEUE_4);
sam_txreset(priv, EMAC_QUEUE_5);
}
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, EMAC_NCR_CLRSTAT);
sam_emac_disableclk(priv);
#endif
}
* Function: sam_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 sam_macaddress(struct sam_emac_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]);
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;
sam_putreg(priv, SAM_EMAC_SAB1_OFFSET, regval);
regval = (uint32_t)dev->d_mac.ether.ether_addr_octet[4] |
(uint32_t)dev->d_mac.ether.ether_addr_octet[5] << 8;
sam_putreg(priv, SAM_EMAC_SAT1_OFFSET, regval);
}
* Function: sam_queue0_configure
*
* Description:
* Put transfer queue 0 in the operational state
*
* Input Parameters:
* priv - A reference to the private driver state structure
*
* Returned Value:
* OK on success; Negated errno on failure.
*
* Assumptions:
*
****************************************************************************/
static int sam_queue0_configure(struct sam_emac_s *priv)
{
uint32_t regval;
*
* EMAC_DCFGR_FBLDO_INCR4 - Attempt to use INCR8 AHB bursts
* - No endian swap mode
* EMAC_DCFGR_RXBMS_FULL - 4 Kbytes Memory Size
* EMAC_DCFGR_TXPBMS - Full configured address space (4Kbytes)
* - No Checksum generation offload enable
* EMAC_DCFGR_DRBS - Set configured receive buffer size
* (units of 64 bytes)
*/
regval = EMAC_DCFGR_FBLDO_INCR4 | EMAC_DCFGR_RXBMS_FULL |
EMAC_DCFGR_TXPBMS | EMAC_DCFGR_DRBS(priv->xfrq[0].rxbufsize >> 6);
sam_putreg(priv, SAM_EMAC_DCFGR_OFFSET, regval);
sam_rxreset(priv, EMAC_QUEUE_0);
sam_txreset(priv, EMAC_QUEUE_0);
regval = sam_getreg(priv, SAM_EMAC_NCR_OFFSET);
regval |= EMAC_NCR_RXEN | EMAC_NCR_TXEN | EMAC_NCR_WESTAT;
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, regval);
regval = EMAC_RX_INTS | EMAC_TX_INTS;
sam_putreg(priv, SAM_EMAC_IER_OFFSET, regval);
return OK;
}
* Function: sam_queue_configure
*
* Description:
* Put transfer queue n, n=1..(EMAC_NQUEUES-1), in the operational state
*
* Input Parameters:
* priv - A reference to the private driver state structure
* qid - Identifies the transfer queue to be configured
*
* Returned Value:
* OK on success; Negated errno on failure.
*
* Assumptions:
*
****************************************************************************/
static int sam_queue_configure(struct sam_emac_s *priv, int qid)
{
uint32_t regval;
regval = (uint32_t)priv->xfrq[qid].rxbufsize >> 6;
sam_putreg(priv, SAM_EMAC_ISRPQ_RBSRPQ_OFFSET(qid), regval);
sam_rxreset(priv, qid);
sam_txreset(priv, qid);
regval = EMAC_RX_INTS | EMAC_TX_INTS;
sam_putreg(priv, SAM_EMAC_ISRPQ_IERPQ_OFFSET(qid), regval);
return OK;
}
* Function: sam_emac_configure
*
* Description:
* Configure the EMAC 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 sam_emac_configure(struct sam_emac_s *priv)
{
uint32_t regval;
ninfo("Entry\n");
sam_emac_enableclk(priv);
sam_putreg(priv, SAM_EMAC_NCR_OFFSET, EMAC_NCR_CLRSTAT);
sam_putreg(priv, SAM_EMAC_IDR_OFFSET, EMAC_INT_ALL);
sam_putreg(priv, SAM_EMAC_ISRPQ_IDRPQ_OFFSET(1), EMAC_INTPQ_ALL);
sam_putreg(priv, SAM_EMAC_ISRPQ_IDRPQ_OFFSET(2), EMAC_INTPQ_ALL);
regval = (EMAC_RSR_RXOVR | EMAC_RSR_REC | EMAC_RSR_BNA | EMAC_RSR_HNO);
sam_putreg(priv, SAM_EMAC_RSR_OFFSET, regval);
regval = (EMAC_TSR_UBR | EMAC_TSR_COL | EMAC_TSR_RLE | EMAC_TSR_TXGO |
EMAC_TSR_TFC | EMAC_TSR_TXCOMP | EMAC_TSR_HRESP);
sam_putreg(priv, SAM_EMAC_TSR_OFFSET, regval);
sam_getreg(priv, SAM_EMAC_ISR_OFFSET);
sam_getreg(priv, SAM_EMAC_ISRPQ_ISRPQ_OFFSET(1));
sam_getreg(priv, SAM_EMAC_ISRPQ_ISRPQ_OFFSET(2));
* Don't copy FCS.
*/
regval = EMAC_NCFGR_FD | EMAC_NCFGR_DBW_ZERO | EMAC_NCFGR_CLK_DIV64 |
EMAC_NCFGR_MAXFS | EMAC_NCFGR_PEN | EMAC_NCFGR_RFCS;
#ifdef CONFIG_NET_PROMISCUOUS
regval |= EMAC_NCFGR_CAF;
#endif
#ifdef CONFIG_SAMV7_EMAC_NBC
regval |= EMAC_NCFGR_NBC;
#endif
sam_putreg(priv, SAM_EMAC_NCFGR_OFFSET, regval);
return OK;
}
* Public Functions
****************************************************************************/
* Function: sam_emac_initialize
*
* Description:
* Initialize the EMAC driver.
*
* Input Parameters:
* intf - If multiple EMAC peripherals are supported, this identifies the
* the EMAC peripheral being initialized.
*
* Returned Value:
* OK on success; Negated errno on failure.
*
* Assumptions:
* Called very early in the initialization sequence.
*
****************************************************************************/
int sam_emac_initialize(int intf)
{
struct sam_emac_s *priv;
const struct sam_emacattr_s *attr;
uint32_t regval;
uint8_t *pktbuf;
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
uint8_t phytype;
#endif
int ret;
* V71 only -- if you are using a different chip in the family,
* the version number at which to switch from 3 to 6 queues may
* be different. Version 1 (Rev B) and higher have 6 queues.
*
* If both emacs are enabled, this code will be run twice, which
* should not be a problem as the result will be the same each time
* it is run.
*/
regval = getreg32(SAM_CHIPID_CIDR);
if (((regval & CHIPID_CIDR_VERSION_MASK) >> CHIPID_CIDR_VERSION_SHIFT) > 0)
{
g_emac_nqueues = EMAC_NQUEUES_REVB;
}
#if defined(CONFIG_SAMV7_EMAC0)
if (intf == EMAC0_INTF)
{
priv = &g_emac0;
attr = &g_emac0_attr;
pktbuf = g_pktbuf0;
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
phytype = SAMV7_EMAC0_PHY_TYPE;
#endif
}
else
#endif
#if defined(CONFIG_SAMV7_EMAC1)
if (intf == EMAC1_INTF)
{
priv = &g_emac1;
attr = &g_emac1_attr;
pktbuf = g_pktbuf1;
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
phytype = SAMV7_EMAC1_PHY_TYPE;
#endif
}
else
#endif
{
nerr("ERROR: Interface %d not supported\n", intf);
return -EINVAL;
}
memset(priv, 0, sizeof(struct sam_emac_s));
priv->attr = attr;
priv->dev.d_buf = pktbuf;
priv->dev.d_ifup = sam_ifup;
priv->dev.d_ifdown = sam_ifdown;
priv->dev.d_txavail = sam_txavail;
#ifdef CONFIG_NET_MCASTGROUP
priv->dev.d_addmac = sam_addmac;
priv->dev.d_rmmac = sam_rmmac;
#endif
#ifdef CONFIG_NETDEV_IOCTL
priv->dev.d_ioctl = sam_ioctl;
#if defined(CONFIG_NETDEV_PHY_IOCTL) && defined(CONFIG_ARCH_PHY_INTERRUPT)
priv->phytype = phytype;
#endif
#endif
priv->dev.d_private = priv;
sam_ethgpioconfig(priv);
ret = sam_buffer_allocate(priv);
if (ret < 0)
{
nerr("ERROR: sam_buffer_allocate failed: %d\n", ret);
return ret;
}
* the interface is in the 'up' state.
*/
ret = irq_attach(priv->attr->irq, sam_emac_interrupt, priv);
if (ret < 0)
{
nerr("ERROR: Failed to attach the handler to the IRQ%d\n",
priv->attr->irq);
goto errout_with_buffers;
}
sam_emac_enableclk(priv);
ret = sam_ifdown(&priv->dev);
if (ret < 0)
{
nerr("ERROR: Failed to put the interface in the down state: %d\n",
ret);
goto errout_with_buffers;
}
ret = netdev_register(&priv->dev, NET_LL_ETHERNET);
if (ret >= 0)
{
return ret;
}
nerr("ERROR: netdev_register() failed: %d\n", ret);
errout_with_buffers:
sam_buffer_free(priv);
return ret;
}
* Function: sam_emac_setmacaddr
*
* Description:
* There are two ways that the Ethernet MAC address can be set:
*
* 1) Application level code can set the Ethernet MAC address using a
* netdev ioctl. The application level code have gotten the MAC
* address from some configuration parameter or by accessing some
* non-volatile storage containing the address. This is the
* "canonically correct" way to set the MAC address.
* 2) Alternatively, the board logic may support some other less obvious
* non-volatile storage and the board-level boot-up code may access
* this and use this interface to set the Ethernet MAC address more
* directly. This is mostly a kludge for the case where you just don't
* want to expose a application level storage interface.
*
* Input Parameters:
* intf - If multiple EMAC peripherals are supported, this identifies the
* the EMAC peripheral being initialized.
*
* Returned Value:
* OK on success; Negated errno on failure.
*
* Assumptions:
* Called very early in the initialization sequence.
*
****************************************************************************/
int sam_emac_setmacaddr(int intf, uint8_t mac[6])
{
struct sam_emac_s *priv;
struct net_driver_s *dev;
#if defined(CONFIG_SAMV7_EMAC0)
if (intf == EMAC0_INTF)
{
priv = &g_emac0;
}
else
#endif
#if defined(CONFIG_SAMV7_EMAC1)
if (intf == EMAC1_INTF)
{
priv = &g_emac1;
}
else
#endif
{
nerr("ERROR: Interface %d not supported\n", intf);
return -EINVAL;
}
dev = &priv->dev;
memcpy(dev->d_mac.ether.ether_addr_octet, mac, 6);
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]);
return OK;
}
#endif