uboot/drivers/net/xilinx_axi_emac.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * Copyright (C) 2011 Michal Simek <monstr@monstr.eu>
   4 * Copyright (C) 2011 PetaLogix
   5 * Copyright (C) 2010 Xilinx, Inc. All rights reserved.
   6 */
   7
   8#include <config.h>
   9#include <common.h>
  10#include <dm.h>
  11#include <net.h>
  12#include <malloc.h>
  13#include <asm/io.h>
  14#include <phy.h>
  15#include <miiphy.h>
  16#include <wait_bit.h>
  17
  18DECLARE_GLOBAL_DATA_PTR;
  19
  20/* Link setup */
  21#define XAE_EMMC_LINKSPEED_MASK 0xC0000000 /* Link speed */
  22#define XAE_EMMC_LINKSPD_10     0x00000000 /* Link Speed mask for 10 Mbit */
  23#define XAE_EMMC_LINKSPD_100    0x40000000 /* Link Speed mask for 100 Mbit */
  24#define XAE_EMMC_LINKSPD_1000   0x80000000 /* Link Speed mask for 1000 Mbit */
  25
  26/* Interrupt Status/Enable/Mask Registers bit definitions */
  27#define XAE_INT_RXRJECT_MASK    0x00000008 /* Rx frame rejected */
  28#define XAE_INT_MGTRDY_MASK     0x00000080 /* MGT clock Lock */
  29
  30/* Receive Configuration Word 1 (RCW1) Register bit definitions */
  31#define XAE_RCW1_RX_MASK        0x10000000 /* Receiver enable */
  32
  33/* Transmitter Configuration (TC) Register bit definitions */
  34#define XAE_TC_TX_MASK          0x10000000 /* Transmitter enable */
  35
  36#define XAE_UAW1_UNICASTADDR_MASK       0x0000FFFF
  37
  38/* MDIO Management Configuration (MC) Register bit definitions */
  39#define XAE_MDIO_MC_MDIOEN_MASK         0x00000040 /* MII management enable*/
  40
  41/* MDIO Management Control Register (MCR) Register bit definitions */
  42#define XAE_MDIO_MCR_PHYAD_MASK         0x1F000000 /* Phy Address Mask */
  43#define XAE_MDIO_MCR_PHYAD_SHIFT        24         /* Phy Address Shift */
  44#define XAE_MDIO_MCR_REGAD_MASK         0x001F0000 /* Reg Address Mask */
  45#define XAE_MDIO_MCR_REGAD_SHIFT        16         /* Reg Address Shift */
  46#define XAE_MDIO_MCR_OP_READ_MASK       0x00008000 /* Op Code Read Mask */
  47#define XAE_MDIO_MCR_OP_WRITE_MASK      0x00004000 /* Op Code Write Mask */
  48#define XAE_MDIO_MCR_INITIATE_MASK      0x00000800 /* Ready Mask */
  49#define XAE_MDIO_MCR_READY_MASK         0x00000080 /* Ready Mask */
  50
  51#define XAE_MDIO_DIV_DFT        29      /* Default MDIO clock divisor */
  52
  53#define XAXIDMA_BD_STS_ACTUAL_LEN_MASK  0x007FFFFF /* Actual len */
  54
  55/* DMA macros */
  56/* Bitmasks of XAXIDMA_CR_OFFSET register */
  57#define XAXIDMA_CR_RUNSTOP_MASK 0x00000001 /* Start/stop DMA channel */
  58#define XAXIDMA_CR_RESET_MASK   0x00000004 /* Reset DMA engine */
  59
  60/* Bitmasks of XAXIDMA_SR_OFFSET register */
  61#define XAXIDMA_HALTED_MASK     0x00000001  /* DMA channel halted */
  62
  63/* Bitmask for interrupts */
  64#define XAXIDMA_IRQ_IOC_MASK    0x00001000 /* Completion intr */
  65#define XAXIDMA_IRQ_DELAY_MASK  0x00002000 /* Delay interrupt */
  66#define XAXIDMA_IRQ_ALL_MASK    0x00007000 /* All interrupts */
  67
  68/* Bitmasks of XAXIDMA_BD_CTRL_OFFSET register */
  69#define XAXIDMA_BD_CTRL_TXSOF_MASK      0x08000000 /* First tx packet */
  70#define XAXIDMA_BD_CTRL_TXEOF_MASK      0x04000000 /* Last tx packet */
  71
  72#define DMAALIGN        128
  73
  74static u8 rxframe[PKTSIZE_ALIGN] __attribute((aligned(DMAALIGN)));
  75
  76/* Reflect dma offsets */
  77struct axidma_reg {
  78        u32 control; /* DMACR */
  79        u32 status; /* DMASR */
  80        u32 current; /* CURDESC low 32 bit */
  81        u32 current_hi; /* CURDESC high 32 bit */
  82        u32 tail; /* TAILDESC low 32 bit */
  83        u32 tail_hi; /* TAILDESC high 32 bit */
  84};
  85
  86/* Private driver structures */
  87struct axidma_priv {
  88        struct axidma_reg *dmatx;
  89        struct axidma_reg *dmarx;
  90        int phyaddr;
  91        struct axi_regs *iobase;
  92        phy_interface_t interface;
  93        struct phy_device *phydev;
  94        struct mii_dev *bus;
  95        u8 eth_hasnobuf;
  96        int phy_of_handle;
  97};
  98
  99/* BD descriptors */
 100struct axidma_bd {
 101        u32 next;       /* Next descriptor pointer */
 102        u32 reserved1;
 103        u32 phys;       /* Buffer address */
 104        u32 reserved2;
 105        u32 reserved3;
 106        u32 reserved4;
 107        u32 cntrl;      /* Control */
 108        u32 status;     /* Status */
 109        u32 app0;
 110        u32 app1;       /* TX start << 16 | insert */
 111        u32 app2;       /* TX csum seed */
 112        u32 app3;
 113        u32 app4;
 114        u32 sw_id_offset;
 115        u32 reserved5;
 116        u32 reserved6;
 117};
 118
 119/* Static BDs - driver uses only one BD */
 120static struct axidma_bd tx_bd __attribute((aligned(DMAALIGN)));
 121static struct axidma_bd rx_bd __attribute((aligned(DMAALIGN)));
 122
 123struct axi_regs {
 124        u32 reserved[3];
 125        u32 is; /* 0xC: Interrupt status */
 126        u32 reserved2;
 127        u32 ie; /* 0x14: Interrupt enable */
 128        u32 reserved3[251];
 129        u32 rcw1; /* 0x404: Rx Configuration Word 1 */
 130        u32 tc; /* 0x408: Tx Configuration */
 131        u32 reserved4;
 132        u32 emmc; /* 0x410: EMAC mode configuration */
 133        u32 reserved5[59];
 134        u32 mdio_mc; /* 0x500: MII Management Config */
 135        u32 mdio_mcr; /* 0x504: MII Management Control */
 136        u32 mdio_mwd; /* 0x508: MII Management Write Data */
 137        u32 mdio_mrd; /* 0x50C: MII Management Read Data */
 138        u32 reserved6[124];
 139        u32 uaw0; /* 0x700: Unicast address word 0 */
 140        u32 uaw1; /* 0x704: Unicast address word 1 */
 141};
 142
 143/* Use MII register 1 (MII status register) to detect PHY */
 144#define PHY_DETECT_REG  1
 145
 146/*
 147 * Mask used to verify certain PHY features (or register contents)
 148 * in the register above:
 149 *  0x1000: 10Mbps full duplex support
 150 *  0x0800: 10Mbps half duplex support
 151 *  0x0008: Auto-negotiation support
 152 */
 153#define PHY_DETECT_MASK 0x1808
 154
 155static inline int mdio_wait(struct axi_regs *regs)
 156{
 157        u32 timeout = 200;
 158
 159        /* Wait till MDIO interface is ready to accept a new transaction. */
 160        while (timeout && (!(readl(&regs->mdio_mcr)
 161                                                & XAE_MDIO_MCR_READY_MASK))) {
 162                timeout--;
 163                udelay(1);
 164        }
 165        if (!timeout) {
 166                printf("%s: Timeout\n", __func__);
 167                return 1;
 168        }
 169        return 0;
 170}
 171
 172/**
 173 * axienet_dma_write -  Memory mapped Axi DMA register Buffer Descriptor write.
 174 * @bd:         pointer to BD descriptor structure
 175 * @desc:       Address offset of DMA descriptors
 176 *
 177 * This function writes the value into the corresponding Axi DMA register.
 178 */
 179static inline void axienet_dma_write(struct axidma_bd *bd, u32 *desc)
 180{
 181#if defined(CONFIG_PHYS_64BIT)
 182        writeq(bd, desc);
 183#else
 184        writel((u32)bd, desc);
 185#endif
 186}
 187
 188static u32 phyread(struct axidma_priv *priv, u32 phyaddress, u32 registernum,
 189                   u16 *val)
 190{
 191        struct axi_regs *regs = priv->iobase;
 192        u32 mdioctrlreg = 0;
 193
 194        if (mdio_wait(regs))
 195                return 1;
 196
 197        mdioctrlreg = ((phyaddress << XAE_MDIO_MCR_PHYAD_SHIFT) &
 198                        XAE_MDIO_MCR_PHYAD_MASK) |
 199                        ((registernum << XAE_MDIO_MCR_REGAD_SHIFT)
 200                        & XAE_MDIO_MCR_REGAD_MASK) |
 201                        XAE_MDIO_MCR_INITIATE_MASK |
 202                        XAE_MDIO_MCR_OP_READ_MASK;
 203
 204        writel(mdioctrlreg, &regs->mdio_mcr);
 205
 206        if (mdio_wait(regs))
 207                return 1;
 208
 209        /* Read data */
 210        *val = readl(&regs->mdio_mrd);
 211        return 0;
 212}
 213
 214static u32 phywrite(struct axidma_priv *priv, u32 phyaddress, u32 registernum,
 215                    u32 data)
 216{
 217        struct axi_regs *regs = priv->iobase;
 218        u32 mdioctrlreg = 0;
 219
 220        if (mdio_wait(regs))
 221                return 1;
 222
 223        mdioctrlreg = ((phyaddress << XAE_MDIO_MCR_PHYAD_SHIFT) &
 224                        XAE_MDIO_MCR_PHYAD_MASK) |
 225                        ((registernum << XAE_MDIO_MCR_REGAD_SHIFT)
 226                        & XAE_MDIO_MCR_REGAD_MASK) |
 227                        XAE_MDIO_MCR_INITIATE_MASK |
 228                        XAE_MDIO_MCR_OP_WRITE_MASK;
 229
 230        /* Write data */
 231        writel(data, &regs->mdio_mwd);
 232
 233        writel(mdioctrlreg, &regs->mdio_mcr);
 234
 235        if (mdio_wait(regs))
 236                return 1;
 237
 238        return 0;
 239}
 240
 241static int axiemac_phy_init(struct udevice *dev)
 242{
 243        u16 phyreg;
 244        u32 i, ret;
 245        struct axidma_priv *priv = dev_get_priv(dev);
 246        struct axi_regs *regs = priv->iobase;
 247        struct phy_device *phydev;
 248
 249        u32 supported = SUPPORTED_10baseT_Half |
 250                        SUPPORTED_10baseT_Full |
 251                        SUPPORTED_100baseT_Half |
 252                        SUPPORTED_100baseT_Full |
 253                        SUPPORTED_1000baseT_Half |
 254                        SUPPORTED_1000baseT_Full;
 255
 256        /* Set default MDIO divisor */
 257        writel(XAE_MDIO_DIV_DFT | XAE_MDIO_MC_MDIOEN_MASK, &regs->mdio_mc);
 258
 259        if (priv->phyaddr == -1) {
 260                /* Detect the PHY address */
 261                for (i = 31; i >= 0; i--) {
 262                        ret = phyread(priv, i, PHY_DETECT_REG, &phyreg);
 263                        if (!ret && (phyreg != 0xFFFF) &&
 264                        ((phyreg & PHY_DETECT_MASK) == PHY_DETECT_MASK)) {
 265                                /* Found a valid PHY address */
 266                                priv->phyaddr = i;
 267                                debug("axiemac: Found valid phy address, %x\n",
 268                                      i);
 269                                break;
 270                        }
 271                }
 272        }
 273
 274        /* Interface - look at tsec */
 275        phydev = phy_connect(priv->bus, priv->phyaddr, dev, priv->interface);
 276
 277        phydev->supported &= supported;
 278        phydev->advertising = phydev->supported;
 279        priv->phydev = phydev;
 280        if (priv->phy_of_handle)
 281                priv->phydev->node = offset_to_ofnode(priv->phy_of_handle);
 282        phy_config(phydev);
 283
 284        return 0;
 285}
 286
 287/* Setting axi emac and phy to proper setting */
 288static int setup_phy(struct udevice *dev)
 289{
 290        u16 temp;
 291        u32 speed, emmc_reg, ret;
 292        struct axidma_priv *priv = dev_get_priv(dev);
 293        struct axi_regs *regs = priv->iobase;
 294        struct phy_device *phydev = priv->phydev;
 295
 296        if (priv->interface == PHY_INTERFACE_MODE_SGMII) {
 297                /*
 298                 * In SGMII cases the isolate bit might set
 299                 * after DMA and ethernet resets and hence
 300                 * check and clear if set.
 301                 */
 302                ret = phyread(priv, priv->phyaddr, MII_BMCR, &temp);
 303                if (ret)
 304                        return 0;
 305                if (temp & BMCR_ISOLATE) {
 306                        temp &= ~BMCR_ISOLATE;
 307                        ret = phywrite(priv, priv->phyaddr, MII_BMCR, temp);
 308                        if (ret)
 309                                return 0;
 310                }
 311        }
 312
 313        if (phy_startup(phydev)) {
 314                printf("axiemac: could not initialize PHY %s\n",
 315                       phydev->dev->name);
 316                return 0;
 317        }
 318        if (!phydev->link) {
 319                printf("%s: No link.\n", phydev->dev->name);
 320                return 0;
 321        }
 322
 323        switch (phydev->speed) {
 324        case 1000:
 325                speed = XAE_EMMC_LINKSPD_1000;
 326                break;
 327        case 100:
 328                speed = XAE_EMMC_LINKSPD_100;
 329                break;
 330        case 10:
 331                speed = XAE_EMMC_LINKSPD_10;
 332                break;
 333        default:
 334                return 0;
 335        }
 336
 337        /* Setup the emac for the phy speed */
 338        emmc_reg = readl(&regs->emmc);
 339        emmc_reg &= ~XAE_EMMC_LINKSPEED_MASK;
 340        emmc_reg |= speed;
 341
 342        /* Write new speed setting out to Axi Ethernet */
 343        writel(emmc_reg, &regs->emmc);
 344
 345        /*
 346        * Setting the operating speed of the MAC needs a delay. There
 347        * doesn't seem to be register to poll, so please consider this
 348        * during your application design.
 349        */
 350        udelay(1);
 351
 352        return 1;
 353}
 354
 355/* STOP DMA transfers */
 356static void axiemac_stop(struct udevice *dev)
 357{
 358        struct axidma_priv *priv = dev_get_priv(dev);
 359        u32 temp;
 360
 361        /* Stop the hardware */
 362        temp = readl(&priv->dmatx->control);
 363        temp &= ~XAXIDMA_CR_RUNSTOP_MASK;
 364        writel(temp, &priv->dmatx->control);
 365
 366        temp = readl(&priv->dmarx->control);
 367        temp &= ~XAXIDMA_CR_RUNSTOP_MASK;
 368        writel(temp, &priv->dmarx->control);
 369
 370        debug("axiemac: Halted\n");
 371}
 372
 373static int axi_ethernet_init(struct axidma_priv *priv)
 374{
 375        struct axi_regs *regs = priv->iobase;
 376        int err;
 377
 378        /*
 379         * Check the status of the MgtRdy bit in the interrupt status
 380         * registers. This must be done to allow the MGT clock to become stable
 381         * for the Sgmii and 1000BaseX PHY interfaces. No other register reads
 382         * will be valid until this bit is valid.
 383         * The bit is always a 1 for all other PHY interfaces.
 384         * Interrupt status and enable registers are not available in non
 385         * processor mode and hence bypass in this mode
 386         */
 387        if (!priv->eth_hasnobuf) {
 388                err = wait_for_bit_le32(&regs->is, XAE_INT_MGTRDY_MASK,
 389                                        true, 200, false);
 390                if (err) {
 391                        printf("%s: Timeout\n", __func__);
 392                        return 1;
 393                }
 394
 395                /*
 396                 * Stop the device and reset HW
 397                 * Disable interrupts
 398                 */
 399                writel(0, &regs->ie);
 400        }
 401
 402        /* Disable the receiver */
 403        writel(readl(&regs->rcw1) & ~XAE_RCW1_RX_MASK, &regs->rcw1);
 404
 405        /*
 406         * Stopping the receiver in mid-packet causes a dropped packet
 407         * indication from HW. Clear it.
 408         */
 409        if (!priv->eth_hasnobuf) {
 410                /* Set the interrupt status register to clear the interrupt */
 411                writel(XAE_INT_RXRJECT_MASK, &regs->is);
 412        }
 413
 414        /* Setup HW */
 415        /* Set default MDIO divisor */
 416        writel(XAE_MDIO_DIV_DFT | XAE_MDIO_MC_MDIOEN_MASK, &regs->mdio_mc);
 417
 418        debug("axiemac: InitHw done\n");
 419        return 0;
 420}
 421
 422static int axiemac_write_hwaddr(struct udevice *dev)
 423{
 424        struct eth_pdata *pdata = dev_get_platdata(dev);
 425        struct axidma_priv *priv = dev_get_priv(dev);
 426        struct axi_regs *regs = priv->iobase;
 427
 428        /* Set the MAC address */
 429        int val = ((pdata->enetaddr[3] << 24) | (pdata->enetaddr[2] << 16) |
 430                (pdata->enetaddr[1] << 8) | (pdata->enetaddr[0]));
 431        writel(val, &regs->uaw0);
 432
 433        val = (pdata->enetaddr[5] << 8) | pdata->enetaddr[4];
 434        val |= readl(&regs->uaw1) & ~XAE_UAW1_UNICASTADDR_MASK;
 435        writel(val, &regs->uaw1);
 436        return 0;
 437}
 438
 439/* Reset DMA engine */
 440static void axi_dma_init(struct axidma_priv *priv)
 441{
 442        u32 timeout = 500;
 443
 444        /* Reset the engine so the hardware starts from a known state */
 445        writel(XAXIDMA_CR_RESET_MASK, &priv->dmatx->control);
 446        writel(XAXIDMA_CR_RESET_MASK, &priv->dmarx->control);
 447
 448        /* At the initialization time, hardware should finish reset quickly */
 449        while (timeout--) {
 450                /* Check transmit/receive channel */
 451                /* Reset is done when the reset bit is low */
 452                if (!((readl(&priv->dmatx->control) |
 453                                readl(&priv->dmarx->control))
 454                                                & XAXIDMA_CR_RESET_MASK)) {
 455                        break;
 456                }
 457        }
 458        if (!timeout)
 459                printf("%s: Timeout\n", __func__);
 460}
 461
 462static int axiemac_start(struct udevice *dev)
 463{
 464        struct axidma_priv *priv = dev_get_priv(dev);
 465        struct axi_regs *regs = priv->iobase;
 466        u32 temp;
 467
 468        debug("axiemac: Init started\n");
 469        /*
 470         * Initialize AXIDMA engine. AXIDMA engine must be initialized before
 471         * AxiEthernet. During AXIDMA engine initialization, AXIDMA hardware is
 472         * reset, and since AXIDMA reset line is connected to AxiEthernet, this
 473         * would ensure a reset of AxiEthernet.
 474         */
 475        axi_dma_init(priv);
 476
 477        /* Initialize AxiEthernet hardware. */
 478        if (axi_ethernet_init(priv))
 479                return -1;
 480
 481        /* Disable all RX interrupts before RxBD space setup */
 482        temp = readl(&priv->dmarx->control);
 483        temp &= ~XAXIDMA_IRQ_ALL_MASK;
 484        writel(temp, &priv->dmarx->control);
 485
 486        /* Start DMA RX channel. Now it's ready to receive data.*/
 487        axienet_dma_write(&rx_bd, &priv->dmarx->current);
 488
 489        /* Setup the BD. */
 490        memset(&rx_bd, 0, sizeof(rx_bd));
 491        rx_bd.next = (u32)&rx_bd;
 492        rx_bd.phys = (u32)&rxframe;
 493        rx_bd.cntrl = sizeof(rxframe);
 494        /* Flush the last BD so DMA core could see the updates */
 495        flush_cache((u32)&rx_bd, sizeof(rx_bd));
 496
 497        /* It is necessary to flush rxframe because if you don't do it
 498         * then cache can contain uninitialized data */
 499        flush_cache((u32)&rxframe, sizeof(rxframe));
 500
 501        /* Start the hardware */
 502        temp = readl(&priv->dmarx->control);
 503        temp |= XAXIDMA_CR_RUNSTOP_MASK;
 504        writel(temp, &priv->dmarx->control);
 505
 506        /* Rx BD is ready - start */
 507        axienet_dma_write(&rx_bd, &priv->dmarx->tail);
 508
 509        /* Enable TX */
 510        writel(XAE_TC_TX_MASK, &regs->tc);
 511        /* Enable RX */
 512        writel(XAE_RCW1_RX_MASK, &regs->rcw1);
 513
 514        /* PHY setup */
 515        if (!setup_phy(dev)) {
 516                axiemac_stop(dev);
 517                return -1;
 518        }
 519
 520        debug("axiemac: Init complete\n");
 521        return 0;
 522}
 523
 524static int axiemac_send(struct udevice *dev, void *ptr, int len)
 525{
 526        struct axidma_priv *priv = dev_get_priv(dev);
 527        u32 timeout;
 528
 529        if (len > PKTSIZE_ALIGN)
 530                len = PKTSIZE_ALIGN;
 531
 532        /* Flush packet to main memory to be trasfered by DMA */
 533        flush_cache((u32)ptr, len);
 534
 535        /* Setup Tx BD */
 536        memset(&tx_bd, 0, sizeof(tx_bd));
 537        /* At the end of the ring, link the last BD back to the top */
 538        tx_bd.next = (u32)&tx_bd;
 539        tx_bd.phys = (u32)ptr;
 540        /* Save len */
 541        tx_bd.cntrl = len | XAXIDMA_BD_CTRL_TXSOF_MASK |
 542                                                XAXIDMA_BD_CTRL_TXEOF_MASK;
 543
 544        /* Flush the last BD so DMA core could see the updates */
 545        flush_cache((u32)&tx_bd, sizeof(tx_bd));
 546
 547        if (readl(&priv->dmatx->status) & XAXIDMA_HALTED_MASK) {
 548                u32 temp;
 549                axienet_dma_write(&tx_bd, &priv->dmatx->current);
 550                /* Start the hardware */
 551                temp = readl(&priv->dmatx->control);
 552                temp |= XAXIDMA_CR_RUNSTOP_MASK;
 553                writel(temp, &priv->dmatx->control);
 554        }
 555
 556        /* Start transfer */
 557        axienet_dma_write(&tx_bd, &priv->dmatx->tail);
 558
 559        /* Wait for transmission to complete */
 560        debug("axiemac: Waiting for tx to be done\n");
 561        timeout = 200;
 562        while (timeout && (!(readl(&priv->dmatx->status) &
 563                        (XAXIDMA_IRQ_DELAY_MASK | XAXIDMA_IRQ_IOC_MASK)))) {
 564                timeout--;
 565                udelay(1);
 566        }
 567        if (!timeout) {
 568                printf("%s: Timeout\n", __func__);
 569                return 1;
 570        }
 571
 572        debug("axiemac: Sending complete\n");
 573        return 0;
 574}
 575
 576static int isrxready(struct axidma_priv *priv)
 577{
 578        u32 status;
 579
 580        /* Read pending interrupts */
 581        status = readl(&priv->dmarx->status);
 582
 583        /* Acknowledge pending interrupts */
 584        writel(status & XAXIDMA_IRQ_ALL_MASK, &priv->dmarx->status);
 585
 586        /*
 587         * If Reception done interrupt is asserted, call RX call back function
 588         * to handle the processed BDs and then raise the according flag.
 589         */
 590        if ((status & (XAXIDMA_IRQ_DELAY_MASK | XAXIDMA_IRQ_IOC_MASK)))
 591                return 1;
 592
 593        return 0;
 594}
 595
 596static int axiemac_recv(struct udevice *dev, int flags, uchar **packetp)
 597{
 598        u32 length;
 599        struct axidma_priv *priv = dev_get_priv(dev);
 600        u32 temp;
 601
 602        /* Wait for an incoming packet */
 603        if (!isrxready(priv))
 604                return -1;
 605
 606        debug("axiemac: RX data ready\n");
 607
 608        /* Disable IRQ for a moment till packet is handled */
 609        temp = readl(&priv->dmarx->control);
 610        temp &= ~XAXIDMA_IRQ_ALL_MASK;
 611        writel(temp, &priv->dmarx->control);
 612        if (!priv->eth_hasnobuf)
 613                length = rx_bd.app4 & 0xFFFF; /* max length mask */
 614        else
 615                length = rx_bd.status & XAXIDMA_BD_STS_ACTUAL_LEN_MASK;
 616
 617#ifdef DEBUG
 618        print_buffer(&rxframe, &rxframe[0], 1, length, 16);
 619#endif
 620
 621        *packetp = rxframe;
 622        return length;
 623}
 624
 625static int axiemac_free_pkt(struct udevice *dev, uchar *packet, int length)
 626{
 627        struct axidma_priv *priv = dev_get_priv(dev);
 628
 629#ifdef DEBUG
 630        /* It is useful to clear buffer to be sure that it is consistent */
 631        memset(rxframe, 0, sizeof(rxframe));
 632#endif
 633        /* Setup RxBD */
 634        /* Clear the whole buffer and setup it again - all flags are cleared */
 635        memset(&rx_bd, 0, sizeof(rx_bd));
 636        rx_bd.next = (u32)&rx_bd;
 637        rx_bd.phys = (u32)&rxframe;
 638        rx_bd.cntrl = sizeof(rxframe);
 639
 640        /* Write bd to HW */
 641        flush_cache((u32)&rx_bd, sizeof(rx_bd));
 642
 643        /* It is necessary to flush rxframe because if you don't do it
 644         * then cache will contain previous packet */
 645        flush_cache((u32)&rxframe, sizeof(rxframe));
 646
 647        /* Rx BD is ready - start again */
 648        axienet_dma_write(&rx_bd, &priv->dmarx->tail);
 649
 650        debug("axiemac: RX completed, framelength = %d\n", length);
 651
 652        return 0;
 653}
 654
 655static int axiemac_miiphy_read(struct mii_dev *bus, int addr,
 656                               int devad, int reg)
 657{
 658        int ret;
 659        u16 value;
 660
 661        ret = phyread(bus->priv, addr, reg, &value);
 662        debug("axiemac: Read MII 0x%x, 0x%x, 0x%x, %d\n", addr, reg,
 663              value, ret);
 664        return value;
 665}
 666
 667static int axiemac_miiphy_write(struct mii_dev *bus, int addr, int devad,
 668                                int reg, u16 value)
 669{
 670        debug("axiemac: Write MII 0x%x, 0x%x, 0x%x\n", addr, reg, value);
 671        return phywrite(bus->priv, addr, reg, value);
 672}
 673
 674static int axi_emac_probe(struct udevice *dev)
 675{
 676        struct axidma_priv *priv = dev_get_priv(dev);
 677        int ret;
 678
 679        priv->bus = mdio_alloc();
 680        priv->bus->read = axiemac_miiphy_read;
 681        priv->bus->write = axiemac_miiphy_write;
 682        priv->bus->priv = priv;
 683
 684        ret = mdio_register_seq(priv->bus, dev->seq);
 685        if (ret)
 686                return ret;
 687
 688        axiemac_phy_init(dev);
 689
 690        return 0;
 691}
 692
 693static int axi_emac_remove(struct udevice *dev)
 694{
 695        struct axidma_priv *priv = dev_get_priv(dev);
 696
 697        free(priv->phydev);
 698        mdio_unregister(priv->bus);
 699        mdio_free(priv->bus);
 700
 701        return 0;
 702}
 703
 704static const struct eth_ops axi_emac_ops = {
 705        .start                  = axiemac_start,
 706        .send                   = axiemac_send,
 707        .recv                   = axiemac_recv,
 708        .free_pkt               = axiemac_free_pkt,
 709        .stop                   = axiemac_stop,
 710        .write_hwaddr           = axiemac_write_hwaddr,
 711};
 712
 713static int axi_emac_ofdata_to_platdata(struct udevice *dev)
 714{
 715        struct eth_pdata *pdata = dev_get_platdata(dev);
 716        struct axidma_priv *priv = dev_get_priv(dev);
 717        int node = dev_of_offset(dev);
 718        int offset = 0;
 719        const char *phy_mode;
 720
 721        pdata->iobase = (phys_addr_t)devfdt_get_addr(dev);
 722        priv->iobase = (struct axi_regs *)pdata->iobase;
 723
 724        offset = fdtdec_lookup_phandle(gd->fdt_blob, node,
 725                                       "axistream-connected");
 726        if (offset <= 0) {
 727                printf("%s: axistream is not found\n", __func__);
 728                return -EINVAL;
 729        }
 730        priv->dmatx = (struct axidma_reg *)fdtdec_get_addr(gd->fdt_blob,
 731                                                          offset, "reg");
 732        if (!priv->dmatx) {
 733                printf("%s: axi_dma register space not found\n", __func__);
 734                return -EINVAL;
 735        }
 736        /* RX channel offset is 0x30 */
 737        priv->dmarx = (struct axidma_reg *)((u32)priv->dmatx + 0x30);
 738
 739        priv->phyaddr = -1;
 740
 741        offset = fdtdec_lookup_phandle(gd->fdt_blob, node, "phy-handle");
 742        if (offset > 0) {
 743                priv->phyaddr = fdtdec_get_int(gd->fdt_blob, offset, "reg", -1);
 744                priv->phy_of_handle = offset;
 745        }
 746
 747        phy_mode = fdt_getprop(gd->fdt_blob, node, "phy-mode", NULL);
 748        if (phy_mode)
 749                pdata->phy_interface = phy_get_interface_by_name(phy_mode);
 750        if (pdata->phy_interface == -1) {
 751                printf("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
 752                return -EINVAL;
 753        }
 754        priv->interface = pdata->phy_interface;
 755
 756        priv->eth_hasnobuf = fdtdec_get_bool(gd->fdt_blob, node,
 757                                             "xlnx,eth-hasnobuf");
 758
 759        printf("AXI EMAC: %lx, phyaddr %d, interface %s\n", (ulong)priv->iobase,
 760               priv->phyaddr, phy_string_for_interface(priv->interface));
 761
 762        return 0;
 763}
 764
 765static const struct udevice_id axi_emac_ids[] = {
 766        { .compatible = "xlnx,axi-ethernet-1.00.a" },
 767        { }
 768};
 769
 770U_BOOT_DRIVER(axi_emac) = {
 771        .name   = "axi_emac",
 772        .id     = UCLASS_ETH,
 773        .of_match = axi_emac_ids,
 774        .ofdata_to_platdata = axi_emac_ofdata_to_platdata,
 775        .probe  = axi_emac_probe,
 776        .remove = axi_emac_remove,
 777        .ops    = &axi_emac_ops,
 778        .priv_auto_alloc_size = sizeof(struct axidma_priv),
 779        .platdata_auto_alloc_size = sizeof(struct eth_pdata),
 780};
 781