]> git.sur5r.net Git - u-boot/blobdiff - drivers/net/xilinx_emaclite.c
Merge branch 'master' of git://git.denx.de/u-boot-ubi
[u-boot] / drivers / net / xilinx_emaclite.c
index cf3957380404ac53877c928c25eba45b5c939acf..8e574cd7ca86b1439d0076f991a16d6c8d5c5d91 100644 (file)
@@ -1,30 +1,32 @@
-/******************************************************************************
- *
- * XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"
- * AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND
- * SOLUTIONS FOR XILINX DEVICES. BY PROVIDING THIS DESIGN, CODE,
- * OR INFORMATION AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE,
- * APPLICATION OR STANDARD, XILINX IS MAKING NO REPRESENTATION
- * THAT THIS IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,
- * AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE
- * FOR YOUR IMPLEMENTATION. XILINX EXPRESSLY DISCLAIMS ANY
- * WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE
- * IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR
- * REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF
- * INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE.
+/*
+ * (C) Copyright 2007-2009 Michal Simek
+ * (C) Copyright 2003 Xilinx Inc.
  *
- * (C) Copyright 2007-2008 Michal Simek
  * Michal SIMEK <monstr@monstr.eu>
  *
- * (c) Copyright 2003 Xilinx Inc.
- * All rights reserved.
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
  *
- ******************************************************************************/
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
 
 #include <common.h>
 #include <net.h>
 #include <config.h>
+#include <malloc.h>
 #include <asm/io.h>
 
 #undef DEBUG
 /* Recv interrupt enable bit */
 #define XEL_RSR_RECV_IE_MASK           0x00000008UL
 
-typedef struct {
-       unsigned int baseaddress;       /* Base address for device (IPIF) */
-       unsigned int nexttxbuffertouse; /* Next TX buffer to write to */
-       unsigned int nextrxbuffertouse; /* Next RX buffer to read from */
-       unsigned char deviceid;         /* Unique ID of device - for future */
-} xemaclite;
-
-static xemaclite emaclite;
+struct xemaclite {
+       u32 nexttxbuffertouse;  /* Next TX buffer to write to */
+       u32 nextrxbuffertouse;  /* Next RX buffer to read from */
+};
 
 static u32 etherrxbuff[PKTSIZE_ALIGN/4]; /* Receive buffer */
 
-/* hardcoded MAC address for the Xilinx EMAC Core when env is nowhere*/
-#ifdef CONFIG_ENV_IS_NOWHERE
-static u8 emacaddr[ENET_ADDR_LENGTH] = { 0x00, 0x0a, 0x35, 0x00, 0x22, 0x01 };
-#else
-static u8 emacaddr[ENET_ADDR_LENGTH];
-#endif
-
-void xemaclite_alignedread (u32 * srcptr, void *destptr, unsigned bytecount)
+static void xemaclite_alignedread (u32 *srcptr, void *destptr, u32 bytecount)
 {
-       unsigned int i;
+       u32 i;
        u32 alignbuffer;
        u32 *to32ptr;
        u32 *from32ptr;
@@ -106,9 +97,9 @@ void xemaclite_alignedread (u32 * srcptr, void *destptr, unsigned bytecount)
        }
 }
 
-void xemaclite_alignedwrite (void *srcptr, u32 destptr, unsigned bytecount)
+static void xemaclite_alignedwrite (void *srcptr, u32 destptr, u32 bytecount)
 {
-       unsigned i;
+       u32 i;
        u32 alignbuffer;
        u32 *to32ptr = (u32 *) destptr;
        u32 *from32ptr;
@@ -133,59 +124,52 @@ void xemaclite_alignedwrite (void *srcptr, u32 destptr, unsigned bytecount)
        *to32ptr++ = alignbuffer;
 }
 
-void eth_halt (void)
+static void emaclite_halt(struct eth_device *dev)
 {
        debug ("eth_halt\n");
 }
 
-int eth_init (bd_t * bis)
+static int emaclite_init(struct eth_device *dev, bd_t *bis)
 {
-       uchar enetaddr[6];
-
        debug ("EmacLite Initialization Started\n");
-       memset (&emaclite, 0, sizeof (xemaclite));
-       emaclite.baseaddress = XILINX_EMACLITE_BASEADDR;
-
-       if (!eth_getenv_enetaddr("ethaddr", enetaddr)) {
-               memcpy(enetaddr, emacaddr, ENET_ADDR_LENGTH);
-               eth_setenv_enetaddr("ethaddr", enetaddr);
-       }
 
 /*
  * TX - TX_PING & TX_PONG initialization
  */
        /* Restart PING TX */
-       out_be32 (emaclite.baseaddress + XEL_TSR_OFFSET, 0);
+       out_be32 (dev->iobase + XEL_TSR_OFFSET, 0);
        /* Copy MAC address */
-       xemaclite_alignedwrite (enetaddr,
-               emaclite.baseaddress, ENET_ADDR_LENGTH);
+       xemaclite_alignedwrite (dev->enetaddr,
+               dev->iobase, ENET_ADDR_LENGTH);
        /* Set the length */
-       out_be32 (emaclite.baseaddress + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
+       out_be32 (dev->iobase + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
        /* Update the MAC address in the EMAC Lite */
-       out_be32 (emaclite.baseaddress + XEL_TSR_OFFSET, XEL_TSR_PROG_MAC_ADDR);
+       out_be32 (dev->iobase + XEL_TSR_OFFSET, XEL_TSR_PROG_MAC_ADDR);
        /* Wait for EMAC Lite to finish with the MAC address update */
-       while ((in_be32 (emaclite.baseaddress + XEL_TSR_OFFSET) &
-               XEL_TSR_PROG_MAC_ADDR) != 0) ;
+       while ((in_be32 (dev->iobase + XEL_TSR_OFFSET) &
+               XEL_TSR_PROG_MAC_ADDR) != 0)
+               ;
 
 #ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
        /* The same operation with PONG TX */
-       out_be32 (emaclite.baseaddress + XEL_TSR_OFFSET + XEL_BUFFER_OFFSET, 0);
-       xemaclite_alignedwrite (enetaddr, emaclite.baseaddress +
+       out_be32 (dev->iobase + XEL_TSR_OFFSET + XEL_BUFFER_OFFSET, 0);
+       xemaclite_alignedwrite(dev->enetaddr, dev->iobase +
                XEL_BUFFER_OFFSET, ENET_ADDR_LENGTH);
-       out_be32 (emaclite.baseaddress + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
-       out_be32 (emaclite.baseaddress + XEL_TSR_OFFSET + XEL_BUFFER_OFFSET,
+       out_be32 (dev->iobase + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
+       out_be32 (dev->iobase + XEL_TSR_OFFSET + XEL_BUFFER_OFFSET,
                XEL_TSR_PROG_MAC_ADDR);
-       while ((in_be32 (emaclite.baseaddress + XEL_TSR_OFFSET +
-               XEL_BUFFER_OFFSET) & XEL_TSR_PROG_MAC_ADDR) != 0) ;
+       while ((in_be32 (dev->iobase + XEL_TSR_OFFSET +
+               XEL_BUFFER_OFFSET) & XEL_TSR_PROG_MAC_ADDR) != 0)
+               ;
 #endif
 
 /*
  * RX - RX_PING & RX_PONG initialization
  */
        /* Write out the value to flush the RX buffer */
-       out_be32 (emaclite.baseaddress + XEL_RSR_OFFSET, XEL_RSR_RECV_IE_MASK);
+       out_be32 (dev->iobase + XEL_RSR_OFFSET, XEL_RSR_RECV_IE_MASK);
 #ifdef CONFIG_XILINX_EMACLITE_RX_PING_PONG
-       out_be32 (emaclite.baseaddress + XEL_RSR_OFFSET + XEL_BUFFER_OFFSET,
+       out_be32 (dev->iobase + XEL_RSR_OFFSET + XEL_BUFFER_OFFSET,
                XEL_RSR_RECV_IE_MASK);
 #endif
 
@@ -193,39 +177,42 @@ int eth_init (bd_t * bis)
        return 0;
 }
 
-int xemaclite_txbufferavailable (xemaclite * instanceptr)
+static int xemaclite_txbufferavailable(struct eth_device *dev)
 {
        u32 reg;
        u32 txpingbusy;
        u32 txpongbusy;
+       struct xemaclite *emaclite = dev->priv;
+
        /*
         * Read the other buffer register
         * and determine if the other buffer is available
         */
-       reg = in_be32 (instanceptr->baseaddress +
-                       instanceptr->nexttxbuffertouse + 0);
+       reg = in_be32 (dev->iobase +
+                       emaclite->nexttxbuffertouse + 0);
        txpingbusy = ((reg & XEL_TSR_XMIT_BUSY_MASK) ==
                        XEL_TSR_XMIT_BUSY_MASK);
 
-       reg = in_be32 (instanceptr->baseaddress +
-                       (instanceptr->nexttxbuffertouse ^ XEL_TSR_OFFSET) + 0);
+       reg = in_be32 (dev->iobase +
+                       (emaclite->nexttxbuffertouse ^ XEL_TSR_OFFSET) + 0);
        txpongbusy = ((reg & XEL_TSR_XMIT_BUSY_MASK) ==
                        XEL_TSR_XMIT_BUSY_MASK);
 
        return (!(txpingbusy && txpongbusy));
 }
 
-int eth_send (volatile void *ptr, int len) {
-
-       unsigned int reg;
-       unsigned int baseaddress;
+static int emaclite_send (struct eth_device *dev, volatile void *ptr, int len)
+{
+       u32 reg;
+       u32 baseaddress;
+       struct xemaclite *emaclite = dev->priv;
 
-       unsigned maxtry = 1000;
+       u32 maxtry = 1000;
 
        if (len > ENET_MAX_MTU)
                len = ENET_MAX_MTU;
 
-       while (!xemaclite_txbufferavailable (&emaclite) && maxtry) {
+       while (!xemaclite_txbufferavailable(dev) && maxtry) {
                udelay (10);
                maxtry--;
        }
@@ -233,16 +220,16 @@ int eth_send (volatile void *ptr, int len) {
        if (!maxtry) {
                printf ("Error: Timeout waiting for ethernet TX buffer\n");
                /* Restart PING TX */
-               out_be32 (emaclite.baseaddress + XEL_TSR_OFFSET, 0);
+               out_be32 (dev->iobase + XEL_TSR_OFFSET, 0);
 #ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
-               out_be32 (emaclite.baseaddress + XEL_TSR_OFFSET +
+               out_be32 (dev->iobase + XEL_TSR_OFFSET +
                XEL_BUFFER_OFFSET, 0);
 #endif
-               return 0;
+               return -1;
        }
 
        /* Determine the expected TX buffer address */
-       baseaddress = (emaclite.baseaddress + emaclite.nexttxbuffertouse);
+       baseaddress = (dev->iobase + emaclite->nexttxbuffertouse);
 
        /* Determine if the expected buffer address is empty */
        reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
@@ -251,7 +238,7 @@ int eth_send (volatile void *ptr, int len) {
                        & XEL_TSR_XMIT_ACTIVE_MASK) == 0)) {
 
 #ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
-               emaclite.nexttxbuffertouse ^= XEL_BUFFER_OFFSET;
+               emaclite->nexttxbuffertouse ^= XEL_BUFFER_OFFSET;
 #endif
                debug ("Send packet from 0x%x\n", baseaddress);
                /* Write the frame to the buffer */
@@ -264,7 +251,7 @@ int eth_send (volatile void *ptr, int len) {
                        reg |= XEL_TSR_XMIT_ACTIVE_MASK;
                }
                out_be32 (baseaddress + XEL_TSR_OFFSET, reg);
-               return 1;
+               return 0;
        }
 #ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
        /* Switch to second buffer */
@@ -274,7 +261,7 @@ int eth_send (volatile void *ptr, int len) {
        if (((reg & XEL_TSR_XMIT_BUSY_MASK) == 0)
                && ((in_be32 ((baseaddress) + XEL_TSR_OFFSET)
                        & XEL_TSR_XMIT_ACTIVE_MASK) == 0)) {
-               debug ("Send packet from 0x%x\n", baseaddress);
+               debug("Send packet from 0x%x\n", baseaddress);
                /* Write the frame to the buffer */
                xemaclite_alignedwrite ((void *) ptr, baseaddress, len);
                out_be32 (baseaddress + XEL_TPLR_OFFSET,(len &
@@ -285,25 +272,26 @@ int eth_send (volatile void *ptr, int len) {
                        reg |= XEL_TSR_XMIT_ACTIVE_MASK;
                }
                out_be32 (baseaddress + XEL_TSR_OFFSET, reg);
-               return 1;
+               return 0;
        }
 #endif
        puts ("Error while sending frame\n");
-       return 0;
+       return -1;
 }
 
-int eth_rx (void)
+static int emaclite_recv(struct eth_device *dev)
 {
-       unsigned int length;
-       unsigned int reg;
-       unsigned int baseaddress;
+       u32 length;
+       u32 reg;
+       u32 baseaddress;
+       struct xemaclite *emaclite = dev->priv;
 
-       baseaddress = emaclite.baseaddress + emaclite.nextrxbuffertouse;
+       baseaddress = dev->iobase + emaclite->nextrxbuffertouse;
        reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
        debug ("Testing data at address 0x%x\n", baseaddress);
        if ((reg & XEL_RSR_RECV_DONE_MASK) == XEL_RSR_RECV_DONE_MASK) {
 #ifdef CONFIG_XILINX_EMACLITE_RX_PING_PONG
-               emaclite.nextrxbuffertouse ^= XEL_BUFFER_OFFSET;
+               emaclite->nextrxbuffertouse ^= XEL_BUFFER_OFFSET;
 #endif
        } else {
 #ifndef CONFIG_XILINX_EMACLITE_RX_PING_PONG
@@ -321,7 +309,7 @@ int eth_rx (void)
 #endif
        }
        /* Get the length of the frame that arrived */
-       switch(((in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0xC)) &
+       switch(((ntohl(in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0xC))) &
                        0xFFFF0000 ) >> 16) {
                case 0x806:
                        length = 42 + 20; /* FIXME size of ARP */
@@ -329,7 +317,7 @@ int eth_rx (void)
                        break;
                case 0x800:
                        length = 14 + 14 +
-                       (((in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0x10)) &
+                       (((ntohl(in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0x10))) &
                        0xFFFF0000) >> 16); /* FIXME size of IP packet */
                        debug ("IP Packet\n");
                        break;
@@ -349,6 +337,36 @@ int eth_rx (void)
 
        debug ("Packet receive from 0x%x, length %dB\n", baseaddress, length);
        NetReceive ((uchar *) etherrxbuff, length);
-       return 1;
+       return length;
+
+}
+
+int xilinx_emaclite_initialize (bd_t *bis, int base_addr)
+{
+       struct eth_device *dev;
+       struct xemaclite *emaclite;
 
+       dev = calloc(1, sizeof(*dev));
+       if (dev == NULL)
+               return -1;
+
+       emaclite = calloc(1, sizeof(struct xemaclite));
+       if (emaclite == NULL) {
+               free(dev);
+               return -1;
+       }
+
+       dev->priv = emaclite;
+
+       sprintf(dev->name, "Xelite.%x", base_addr);
+
+       dev->iobase = base_addr;
+       dev->init = emaclite_init;
+       dev->halt = emaclite_halt;
+       dev->send = emaclite_send;
+       dev->recv = emaclite_recv;
+
+       eth_register(dev);
+
+       return 1;
 }