blob: 8e574cd7ca86b1439d0076f991a16d6c8d5c5d91 [file] [log] [blame]
Michal Simek78d19a32009-09-07 09:08:02 +02001/*
2 * (C) Copyright 2007-2009 Michal Simek
3 * (C) Copyright 2003 Xilinx Inc.
Michal Simek89c53892008-03-28 12:41:56 +01004 *
Michal Simek89c53892008-03-28 12:41:56 +01005 * Michal SIMEK <monstr@monstr.eu>
6 *
Michal Simek78d19a32009-09-07 09:08:02 +02007 * See file CREDITS for list of people who contributed to this
8 * project.
Michal Simek89c53892008-03-28 12:41:56 +01009 *
Michal Simek78d19a32009-09-07 09:08:02 +020010 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
Michal Simek89c53892008-03-28 12:41:56 +010025
26#include <common.h>
27#include <net.h>
28#include <config.h>
Michal Simek042272a2010-10-11 11:41:47 +100029#include <malloc.h>
Michal Simek89c53892008-03-28 12:41:56 +010030#include <asm/io.h>
31
32#undef DEBUG
33
34#define ENET_MAX_MTU PKTSIZE
35#define ENET_MAX_MTU_ALIGNED PKTSIZE_ALIGN
36#define ENET_ADDR_LENGTH 6
37
38/* EmacLite constants */
39#define XEL_BUFFER_OFFSET 0x0800 /* Next buffer's offset */
40#define XEL_TPLR_OFFSET 0x07F4 /* Tx packet length */
41#define XEL_TSR_OFFSET 0x07FC /* Tx status */
42#define XEL_RSR_OFFSET 0x17FC /* Rx status */
43#define XEL_RXBUFF_OFFSET 0x1000 /* Receive Buffer */
44
45/* Xmit complete */
46#define XEL_TSR_XMIT_BUSY_MASK 0x00000001UL
47/* Xmit interrupt enable bit */
48#define XEL_TSR_XMIT_IE_MASK 0x00000008UL
49/* Buffer is active, SW bit only */
50#define XEL_TSR_XMIT_ACTIVE_MASK 0x80000000UL
51/* Program the MAC address */
52#define XEL_TSR_PROGRAM_MASK 0x00000002UL
53/* define for programming the MAC address into the EMAC Lite */
54#define XEL_TSR_PROG_MAC_ADDR (XEL_TSR_XMIT_BUSY_MASK | XEL_TSR_PROGRAM_MASK)
55
56/* Transmit packet length upper byte */
57#define XEL_TPLR_LENGTH_MASK_HI 0x0000FF00UL
58/* Transmit packet length lower byte */
59#define XEL_TPLR_LENGTH_MASK_LO 0x000000FFUL
60
61/* Recv complete */
62#define XEL_RSR_RECV_DONE_MASK 0x00000001UL
63/* Recv interrupt enable bit */
64#define XEL_RSR_RECV_IE_MASK 0x00000008UL
65
Michal Simek773cfa82011-08-25 12:47:56 +020066struct xemaclite {
Michal Simek042272a2010-10-11 11:41:47 +100067 u32 nexttxbuffertouse; /* Next TX buffer to write to */
68 u32 nextrxbuffertouse; /* Next RX buffer to read from */
Michal Simek773cfa82011-08-25 12:47:56 +020069};
Michal Simek89c53892008-03-28 12:41:56 +010070
Clive Stubbingsf2a7806f2008-10-27 15:05:00 +000071static u32 etherrxbuff[PKTSIZE_ALIGN/4]; /* Receive buffer */
Michal Simek89c53892008-03-28 12:41:56 +010072
Michal Simek042272a2010-10-11 11:41:47 +100073static void xemaclite_alignedread (u32 *srcptr, void *destptr, u32 bytecount)
Michal Simek89c53892008-03-28 12:41:56 +010074{
Michal Simek042272a2010-10-11 11:41:47 +100075 u32 i;
Michal Simek89c53892008-03-28 12:41:56 +010076 u32 alignbuffer;
77 u32 *to32ptr;
78 u32 *from32ptr;
79 u8 *to8ptr;
80 u8 *from8ptr;
81
82 from32ptr = (u32 *) srcptr;
83
84 /* Word aligned buffer, no correction needed. */
85 to32ptr = (u32 *) destptr;
86 while (bytecount > 3) {
87 *to32ptr++ = *from32ptr++;
88 bytecount -= 4;
89 }
90 to8ptr = (u8 *) to32ptr;
91
92 alignbuffer = *from32ptr++;
93 from8ptr = (u8 *) & alignbuffer;
94
95 for (i = 0; i < bytecount; i++) {
96 *to8ptr++ = *from8ptr++;
97 }
98}
99
Michal Simek042272a2010-10-11 11:41:47 +1000100static void xemaclite_alignedwrite (void *srcptr, u32 destptr, u32 bytecount)
Michal Simek89c53892008-03-28 12:41:56 +0100101{
Michal Simek042272a2010-10-11 11:41:47 +1000102 u32 i;
Michal Simek89c53892008-03-28 12:41:56 +0100103 u32 alignbuffer;
104 u32 *to32ptr = (u32 *) destptr;
105 u32 *from32ptr;
106 u8 *to8ptr;
107 u8 *from8ptr;
108
109 from32ptr = (u32 *) srcptr;
110 while (bytecount > 3) {
111
112 *to32ptr++ = *from32ptr++;
113 bytecount -= 4;
114 }
115
116 alignbuffer = 0;
117 to8ptr = (u8 *) & alignbuffer;
118 from8ptr = (u8 *) from32ptr;
119
120 for (i = 0; i < bytecount; i++) {
121 *to8ptr++ = *from8ptr++;
122 }
123
124 *to32ptr++ = alignbuffer;
125}
126
Michal Simek042272a2010-10-11 11:41:47 +1000127static void emaclite_halt(struct eth_device *dev)
Michal Simek89c53892008-03-28 12:41:56 +0100128{
129 debug ("eth_halt\n");
130}
131
Michal Simek042272a2010-10-11 11:41:47 +1000132static int emaclite_init(struct eth_device *dev, bd_t *bis)
Michal Simek89c53892008-03-28 12:41:56 +0100133{
134 debug ("EmacLite Initialization Started\n");
Michal Simek89c53892008-03-28 12:41:56 +0100135
136/*
137 * TX - TX_PING & TX_PONG initialization
138 */
139 /* Restart PING TX */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200140 out_be32 (dev->iobase + XEL_TSR_OFFSET, 0);
Michal Simek89c53892008-03-28 12:41:56 +0100141 /* Copy MAC address */
Michal Simek042272a2010-10-11 11:41:47 +1000142 xemaclite_alignedwrite (dev->enetaddr,
Michal Simek8d95ddb2011-08-25 12:36:39 +0200143 dev->iobase, ENET_ADDR_LENGTH);
Michal Simek89c53892008-03-28 12:41:56 +0100144 /* Set the length */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200145 out_be32 (dev->iobase + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
Michal Simek89c53892008-03-28 12:41:56 +0100146 /* Update the MAC address in the EMAC Lite */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200147 out_be32 (dev->iobase + XEL_TSR_OFFSET, XEL_TSR_PROG_MAC_ADDR);
Michal Simek89c53892008-03-28 12:41:56 +0100148 /* Wait for EMAC Lite to finish with the MAC address update */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200149 while ((in_be32 (dev->iobase + XEL_TSR_OFFSET) &
150 XEL_TSR_PROG_MAC_ADDR) != 0)
151 ;
Michal Simek89c53892008-03-28 12:41:56 +0100152
153#ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
154 /* The same operation with PONG TX */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200155 out_be32 (dev->iobase + XEL_TSR_OFFSET + XEL_BUFFER_OFFSET, 0);
156 xemaclite_alignedwrite(dev->enetaddr, dev->iobase +
Michal Simek89c53892008-03-28 12:41:56 +0100157 XEL_BUFFER_OFFSET, ENET_ADDR_LENGTH);
Michal Simek8d95ddb2011-08-25 12:36:39 +0200158 out_be32 (dev->iobase + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
159 out_be32 (dev->iobase + XEL_TSR_OFFSET + XEL_BUFFER_OFFSET,
Michal Simek89c53892008-03-28 12:41:56 +0100160 XEL_TSR_PROG_MAC_ADDR);
Michal Simek8d95ddb2011-08-25 12:36:39 +0200161 while ((in_be32 (dev->iobase + XEL_TSR_OFFSET +
162 XEL_BUFFER_OFFSET) & XEL_TSR_PROG_MAC_ADDR) != 0)
163 ;
Michal Simek89c53892008-03-28 12:41:56 +0100164#endif
165
166/*
167 * RX - RX_PING & RX_PONG initialization
168 */
169 /* Write out the value to flush the RX buffer */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200170 out_be32 (dev->iobase + XEL_RSR_OFFSET, XEL_RSR_RECV_IE_MASK);
Michal Simek89c53892008-03-28 12:41:56 +0100171#ifdef CONFIG_XILINX_EMACLITE_RX_PING_PONG
Michal Simek8d95ddb2011-08-25 12:36:39 +0200172 out_be32 (dev->iobase + XEL_RSR_OFFSET + XEL_BUFFER_OFFSET,
Michal Simek89c53892008-03-28 12:41:56 +0100173 XEL_RSR_RECV_IE_MASK);
174#endif
175
176 debug ("EmacLite Initialization complete\n");
177 return 0;
178}
179
Michal Simek773cfa82011-08-25 12:47:56 +0200180static int xemaclite_txbufferavailable(struct eth_device *dev)
Michal Simek89c53892008-03-28 12:41:56 +0100181{
182 u32 reg;
183 u32 txpingbusy;
184 u32 txpongbusy;
Michal Simek773cfa82011-08-25 12:47:56 +0200185 struct xemaclite *emaclite = dev->priv;
186
Michal Simek89c53892008-03-28 12:41:56 +0100187 /*
188 * Read the other buffer register
189 * and determine if the other buffer is available
190 */
Michal Simek773cfa82011-08-25 12:47:56 +0200191 reg = in_be32 (dev->iobase +
192 emaclite->nexttxbuffertouse + 0);
Michal Simek89c53892008-03-28 12:41:56 +0100193 txpingbusy = ((reg & XEL_TSR_XMIT_BUSY_MASK) ==
194 XEL_TSR_XMIT_BUSY_MASK);
195
Michal Simek773cfa82011-08-25 12:47:56 +0200196 reg = in_be32 (dev->iobase +
197 (emaclite->nexttxbuffertouse ^ XEL_TSR_OFFSET) + 0);
Michal Simek89c53892008-03-28 12:41:56 +0100198 txpongbusy = ((reg & XEL_TSR_XMIT_BUSY_MASK) ==
199 XEL_TSR_XMIT_BUSY_MASK);
200
201 return (!(txpingbusy && txpongbusy));
202}
203
Michal Simek042272a2010-10-11 11:41:47 +1000204static int emaclite_send (struct eth_device *dev, volatile void *ptr, int len)
205{
206 u32 reg;
207 u32 baseaddress;
Michal Simek773cfa82011-08-25 12:47:56 +0200208 struct xemaclite *emaclite = dev->priv;
Michal Simek89c53892008-03-28 12:41:56 +0100209
Michal Simek042272a2010-10-11 11:41:47 +1000210 u32 maxtry = 1000;
Michal Simek89c53892008-03-28 12:41:56 +0100211
212 if (len > ENET_MAX_MTU)
213 len = ENET_MAX_MTU;
214
Michal Simek773cfa82011-08-25 12:47:56 +0200215 while (!xemaclite_txbufferavailable(dev) && maxtry) {
Michal Simek89c53892008-03-28 12:41:56 +0100216 udelay (10);
217 maxtry--;
218 }
219
220 if (!maxtry) {
221 printf ("Error: Timeout waiting for ethernet TX buffer\n");
222 /* Restart PING TX */
Michal Simek8d95ddb2011-08-25 12:36:39 +0200223 out_be32 (dev->iobase + XEL_TSR_OFFSET, 0);
Michal Simek89c53892008-03-28 12:41:56 +0100224#ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
Michal Simek8d95ddb2011-08-25 12:36:39 +0200225 out_be32 (dev->iobase + XEL_TSR_OFFSET +
Michal Simek89c53892008-03-28 12:41:56 +0100226 XEL_BUFFER_OFFSET, 0);
227#endif
Michal Simek95efa792011-03-08 04:25:53 +0000228 return -1;
Michal Simek89c53892008-03-28 12:41:56 +0100229 }
230
231 /* Determine the expected TX buffer address */
Michal Simek773cfa82011-08-25 12:47:56 +0200232 baseaddress = (dev->iobase + emaclite->nexttxbuffertouse);
Michal Simek89c53892008-03-28 12:41:56 +0100233
234 /* Determine if the expected buffer address is empty */
235 reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
236 if (((reg & XEL_TSR_XMIT_BUSY_MASK) == 0)
237 && ((in_be32 ((baseaddress) + XEL_TSR_OFFSET)
238 & XEL_TSR_XMIT_ACTIVE_MASK) == 0)) {
239
240#ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
Michal Simek773cfa82011-08-25 12:47:56 +0200241 emaclite->nexttxbuffertouse ^= XEL_BUFFER_OFFSET;
Michal Simek89c53892008-03-28 12:41:56 +0100242#endif
243 debug ("Send packet from 0x%x\n", baseaddress);
244 /* Write the frame to the buffer */
245 xemaclite_alignedwrite ((void *) ptr, baseaddress, len);
246 out_be32 (baseaddress + XEL_TPLR_OFFSET,(len &
247 (XEL_TPLR_LENGTH_MASK_HI | XEL_TPLR_LENGTH_MASK_LO)));
248 reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
249 reg |= XEL_TSR_XMIT_BUSY_MASK;
250 if ((reg & XEL_TSR_XMIT_IE_MASK) != 0) {
251 reg |= XEL_TSR_XMIT_ACTIVE_MASK;
252 }
253 out_be32 (baseaddress + XEL_TSR_OFFSET, reg);
Michal Simek95efa792011-03-08 04:25:53 +0000254 return 0;
Michal Simek89c53892008-03-28 12:41:56 +0100255 }
256#ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
257 /* Switch to second buffer */
258 baseaddress ^= XEL_BUFFER_OFFSET;
259 /* Determine if the expected buffer address is empty */
260 reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
261 if (((reg & XEL_TSR_XMIT_BUSY_MASK) == 0)
262 && ((in_be32 ((baseaddress) + XEL_TSR_OFFSET)
263 & XEL_TSR_XMIT_ACTIVE_MASK) == 0)) {
Michal Simek8d95ddb2011-08-25 12:36:39 +0200264 debug("Send packet from 0x%x\n", baseaddress);
Michal Simek89c53892008-03-28 12:41:56 +0100265 /* Write the frame to the buffer */
266 xemaclite_alignedwrite ((void *) ptr, baseaddress, len);
267 out_be32 (baseaddress + XEL_TPLR_OFFSET,(len &
268 (XEL_TPLR_LENGTH_MASK_HI | XEL_TPLR_LENGTH_MASK_LO)));
269 reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
270 reg |= XEL_TSR_XMIT_BUSY_MASK;
271 if ((reg & XEL_TSR_XMIT_IE_MASK) != 0) {
272 reg |= XEL_TSR_XMIT_ACTIVE_MASK;
273 }
274 out_be32 (baseaddress + XEL_TSR_OFFSET, reg);
Michal Simek95efa792011-03-08 04:25:53 +0000275 return 0;
Michal Simek89c53892008-03-28 12:41:56 +0100276 }
277#endif
278 puts ("Error while sending frame\n");
Michal Simek95efa792011-03-08 04:25:53 +0000279 return -1;
Michal Simek89c53892008-03-28 12:41:56 +0100280}
281
Michal Simek042272a2010-10-11 11:41:47 +1000282static int emaclite_recv(struct eth_device *dev)
Michal Simek89c53892008-03-28 12:41:56 +0100283{
Michal Simek042272a2010-10-11 11:41:47 +1000284 u32 length;
285 u32 reg;
286 u32 baseaddress;
Michal Simek773cfa82011-08-25 12:47:56 +0200287 struct xemaclite *emaclite = dev->priv;
Michal Simek89c53892008-03-28 12:41:56 +0100288
Michal Simek773cfa82011-08-25 12:47:56 +0200289 baseaddress = dev->iobase + emaclite->nextrxbuffertouse;
Michal Simek89c53892008-03-28 12:41:56 +0100290 reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
291 debug ("Testing data at address 0x%x\n", baseaddress);
292 if ((reg & XEL_RSR_RECV_DONE_MASK) == XEL_RSR_RECV_DONE_MASK) {
293#ifdef CONFIG_XILINX_EMACLITE_RX_PING_PONG
Michal Simek773cfa82011-08-25 12:47:56 +0200294 emaclite->nextrxbuffertouse ^= XEL_BUFFER_OFFSET;
Michal Simek89c53892008-03-28 12:41:56 +0100295#endif
296 } else {
297#ifndef CONFIG_XILINX_EMACLITE_RX_PING_PONG
298 debug ("No data was available - address 0x%x\n", baseaddress);
299 return 0;
300#else
301 baseaddress ^= XEL_BUFFER_OFFSET;
302 reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
303 if ((reg & XEL_RSR_RECV_DONE_MASK) !=
304 XEL_RSR_RECV_DONE_MASK) {
305 debug ("No data was available - address 0x%x\n",
306 baseaddress);
307 return 0;
308 }
309#endif
310 }
311 /* Get the length of the frame that arrived */
Michal Simek3f91ec02010-10-11 11:41:46 +1000312 switch(((ntohl(in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0xC))) &
Michal Simek89c53892008-03-28 12:41:56 +0100313 0xFFFF0000 ) >> 16) {
314 case 0x806:
315 length = 42 + 20; /* FIXME size of ARP */
316 debug ("ARP Packet\n");
317 break;
318 case 0x800:
319 length = 14 + 14 +
Michal Simek3f91ec02010-10-11 11:41:46 +1000320 (((ntohl(in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0x10))) &
Michal Simek89c53892008-03-28 12:41:56 +0100321 0xFFFF0000) >> 16); /* FIXME size of IP packet */
322 debug ("IP Packet\n");
323 break;
324 default:
325 debug ("Other Packet\n");
326 length = ENET_MAX_MTU;
327 break;
328 }
329
330 xemaclite_alignedread ((u32 *) (baseaddress + XEL_RXBUFF_OFFSET),
331 etherrxbuff, length);
332
333 /* Acknowledge the frame */
334 reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
335 reg &= ~XEL_RSR_RECV_DONE_MASK;
336 out_be32 (baseaddress + XEL_RSR_OFFSET, reg);
337
338 debug ("Packet receive from 0x%x, length %dB\n", baseaddress, length);
339 NetReceive ((uchar *) etherrxbuff, length);
Michal Simek95efa792011-03-08 04:25:53 +0000340 return length;
Michal Simek89c53892008-03-28 12:41:56 +0100341
342}
Michal Simek042272a2010-10-11 11:41:47 +1000343
344int xilinx_emaclite_initialize (bd_t *bis, int base_addr)
345{
346 struct eth_device *dev;
Michal Simek773cfa82011-08-25 12:47:56 +0200347 struct xemaclite *emaclite;
Michal Simek042272a2010-10-11 11:41:47 +1000348
Michal Simek28ae02e2011-08-25 12:28:47 +0200349 dev = calloc(1, sizeof(*dev));
Michal Simek042272a2010-10-11 11:41:47 +1000350 if (dev == NULL)
Michal Simek95efa792011-03-08 04:25:53 +0000351 return -1;
Michal Simek042272a2010-10-11 11:41:47 +1000352
Michal Simek773cfa82011-08-25 12:47:56 +0200353 emaclite = calloc(1, sizeof(struct xemaclite));
354 if (emaclite == NULL) {
355 free(dev);
356 return -1;
357 }
358
359 dev->priv = emaclite;
360
Michal Simek25a02552011-08-25 12:25:14 +0200361 sprintf(dev->name, "Xelite.%x", base_addr);
Michal Simek042272a2010-10-11 11:41:47 +1000362
363 dev->iobase = base_addr;
Michal Simek042272a2010-10-11 11:41:47 +1000364 dev->init = emaclite_init;
365 dev->halt = emaclite_halt;
366 dev->send = emaclite_send;
367 dev->recv = emaclite_recv;
368
369 eth_register(dev);
370
Michal Simek95efa792011-03-08 04:25:53 +0000371 return 1;
Michal Simek042272a2010-10-11 11:41:47 +1000372}