xilinx_emaclite.c 9.2 KB
Newer Older
1 2 3
/*
 * (C) Copyright 2007-2009 Michal Simek
 * (C) Copyright 2003 Xilinx Inc.
4 5 6
 *
 * Michal SIMEK <monstr@monstr.eu>
 *
7
 * SPDX-License-Identifier:	GPL-2.0+
8
 */
9 10 11 12

#include <common.h>
#include <net.h>
#include <config.h>
M
Michal Simek 已提交
13
#include <malloc.h>
14
#include <asm/io.h>
15 16
#include <fdtdec.h>

17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#undef DEBUG

#define ENET_ADDR_LENGTH	6

/* EmacLite constants */
#define XEL_BUFFER_OFFSET	0x0800	/* Next buffer's offset */
#define XEL_TPLR_OFFSET		0x07F4	/* Tx packet length */
#define XEL_TSR_OFFSET		0x07FC	/* Tx status */
#define XEL_RSR_OFFSET		0x17FC	/* Rx status */
#define XEL_RXBUFF_OFFSET	0x1000	/* Receive Buffer */

/* Xmit complete */
#define XEL_TSR_XMIT_BUSY_MASK		0x00000001UL
/* Xmit interrupt enable bit */
#define XEL_TSR_XMIT_IE_MASK		0x00000008UL
/* Buffer is active, SW bit only */
#define XEL_TSR_XMIT_ACTIVE_MASK	0x80000000UL
/* Program the MAC address */
#define XEL_TSR_PROGRAM_MASK		0x00000002UL
/* define for programming the MAC address into the EMAC Lite */
#define XEL_TSR_PROG_MAC_ADDR	(XEL_TSR_XMIT_BUSY_MASK | XEL_TSR_PROGRAM_MASK)

/* Transmit packet length upper byte */
#define XEL_TPLR_LENGTH_MASK_HI		0x0000FF00UL
/* Transmit packet length lower byte */
#define XEL_TPLR_LENGTH_MASK_LO		0x000000FFUL

/* Recv complete */
#define XEL_RSR_RECV_DONE_MASK		0x00000001UL
/* Recv interrupt enable bit */
#define XEL_RSR_RECV_IE_MASK		0x00000008UL

49
struct xemaclite {
M
Michal Simek 已提交
50 51
	u32 nexttxbuffertouse;	/* Next TX buffer to write to */
	u32 nextrxbuffertouse;	/* Next RX buffer to read from */
52 53
	u32 txpp;		/* TX ping pong buffer */
	u32 rxpp;		/* RX ping pong buffer */
54
};
55

C
Clive Stubbings 已提交
56
static u32 etherrxbuff[PKTSIZE_ALIGN/4]; /* Receive buffer */
57

M
Michal Simek 已提交
58
static void xemaclite_alignedread(u32 *srcptr, void *destptr, u32 bytecount)
59
{
M
Michal Simek 已提交
60
	u32 i;
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
	u32 alignbuffer;
	u32 *to32ptr;
	u32 *from32ptr;
	u8 *to8ptr;
	u8 *from8ptr;

	from32ptr = (u32 *) srcptr;

	/* Word aligned buffer, no correction needed. */
	to32ptr = (u32 *) destptr;
	while (bytecount > 3) {
		*to32ptr++ = *from32ptr++;
		bytecount -= 4;
	}
	to8ptr = (u8 *) to32ptr;

	alignbuffer = *from32ptr++;
M
Michal Simek 已提交
78
	from8ptr = (u8 *) &alignbuffer;
79

M
Michal Simek 已提交
80
	for (i = 0; i < bytecount; i++)
81 82 83
		*to8ptr++ = *from8ptr++;
}

M
Michal Simek 已提交
84
static void xemaclite_alignedwrite(void *srcptr, u32 destptr, u32 bytecount)
85
{
M
Michal Simek 已提交
86
	u32 i;
87 88 89 90 91 92 93 94 95 96 97 98 99 100
	u32 alignbuffer;
	u32 *to32ptr = (u32 *) destptr;
	u32 *from32ptr;
	u8 *to8ptr;
	u8 *from8ptr;

	from32ptr = (u32 *) srcptr;
	while (bytecount > 3) {

		*to32ptr++ = *from32ptr++;
		bytecount -= 4;
	}

	alignbuffer = 0;
M
Michal Simek 已提交
101
	to8ptr = (u8 *) &alignbuffer;
102 103
	from8ptr = (u8 *) from32ptr;

M
Michal Simek 已提交
104
	for (i = 0; i < bytecount; i++)
105 106 107 108 109
		*to8ptr++ = *from8ptr++;

	*to32ptr++ = alignbuffer;
}

M
Michal Simek 已提交
110
static void emaclite_halt(struct eth_device *dev)
111
{
M
Michal Simek 已提交
112
	debug("eth_halt\n");
113 114
}

M
Michal Simek 已提交
115
static int emaclite_init(struct eth_device *dev, bd_t *bis)
116
{
117
	struct xemaclite *emaclite = dev->priv;
M
Michal Simek 已提交
118
	debug("EmacLite Initialization Started\n");
119 120 121 122 123

/*
 * TX - TX_PING & TX_PONG initialization
 */
	/* Restart PING TX */
124
	out_be32 (dev->iobase + XEL_TSR_OFFSET, 0);
125
	/* Copy MAC address */
M
Michal Simek 已提交
126
	xemaclite_alignedwrite(dev->enetaddr, dev->iobase, ENET_ADDR_LENGTH);
127
	/* Set the length */
128
	out_be32 (dev->iobase + XEL_TPLR_OFFSET, ENET_ADDR_LENGTH);
129
	/* Update the MAC address in the EMAC Lite */
130
	out_be32 (dev->iobase + XEL_TSR_OFFSET, XEL_TSR_PROG_MAC_ADDR);
131
	/* Wait for EMAC Lite to finish with the MAC address update */
132 133 134
	while ((in_be32 (dev->iobase + XEL_TSR_OFFSET) &
		XEL_TSR_PROG_MAC_ADDR) != 0)
		;
135

136 137 138 139 140 141 142 143 144 145 146 147
	if (emaclite->txpp) {
		/* The same operation with PONG TX */
		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 (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 (dev->iobase + XEL_TSR_OFFSET +
			XEL_BUFFER_OFFSET) & XEL_TSR_PROG_MAC_ADDR) != 0)
			;
	}
148 149 150 151 152

/*
 * RX - RX_PING & RX_PONG initialization
 */
	/* Write out the value to flush the RX buffer */
153
	out_be32 (dev->iobase + XEL_RSR_OFFSET, XEL_RSR_RECV_IE_MASK);
154 155 156 157

	if (emaclite->rxpp)
		out_be32 (dev->iobase + XEL_RSR_OFFSET + XEL_BUFFER_OFFSET,
			XEL_RSR_RECV_IE_MASK);
158

M
Michal Simek 已提交
159
	debug("EmacLite Initialization complete\n");
160 161 162
	return 0;
}

163
static int xemaclite_txbufferavailable(struct eth_device *dev)
164 165 166 167
{
	u32 reg;
	u32 txpingbusy;
	u32 txpongbusy;
168 169
	struct xemaclite *emaclite = dev->priv;

170 171 172 173
	/*
	 * Read the other buffer register
	 * and determine if the other buffer is available
	 */
174 175
	reg = in_be32 (dev->iobase +
			emaclite->nexttxbuffertouse + 0);
176 177 178
	txpingbusy = ((reg & XEL_TSR_XMIT_BUSY_MASK) ==
			XEL_TSR_XMIT_BUSY_MASK);

179 180
	reg = in_be32 (dev->iobase +
			(emaclite->nexttxbuffertouse ^ XEL_TSR_OFFSET) + 0);
181 182 183
	txpongbusy = ((reg & XEL_TSR_XMIT_BUSY_MASK) ==
			XEL_TSR_XMIT_BUSY_MASK);

M
Michal Simek 已提交
184
	return !(txpingbusy && txpongbusy);
185 186
}

187
static int emaclite_send(struct eth_device *dev, void *ptr, int len)
M
Michal Simek 已提交
188 189 190
{
	u32 reg;
	u32 baseaddress;
191
	struct xemaclite *emaclite = dev->priv;
192

M
Michal Simek 已提交
193
	u32 maxtry = 1000;
194

M
Michal Simek 已提交
195 196
	if (len > PKTSIZE)
		len = PKTSIZE;
197

198
	while (!xemaclite_txbufferavailable(dev) && maxtry) {
M
Michal Simek 已提交
199
		udelay(10);
200 201 202 203
		maxtry--;
	}

	if (!maxtry) {
M
Michal Simek 已提交
204
		printf("Error: Timeout waiting for ethernet TX buffer\n");
205
		/* Restart PING TX */
206
		out_be32 (dev->iobase + XEL_TSR_OFFSET, 0);
207 208 209 210
		if (emaclite->txpp) {
			out_be32 (dev->iobase + XEL_TSR_OFFSET +
				XEL_BUFFER_OFFSET, 0);
		}
211
		return -1;
212 213 214
	}

	/* Determine the expected TX buffer address */
215
	baseaddress = (dev->iobase + emaclite->nexttxbuffertouse);
216 217 218 219 220 221 222

	/* Determine if the expected buffer address is empty */
	reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
	if (((reg & XEL_TSR_XMIT_BUSY_MASK) == 0)
		&& ((in_be32 ((baseaddress) + XEL_TSR_OFFSET)
			& XEL_TSR_XMIT_ACTIVE_MASK) == 0)) {

223 224 225
		if (emaclite->txpp)
			emaclite->nexttxbuffertouse ^= XEL_BUFFER_OFFSET;

M
Michal Simek 已提交
226
		debug("Send packet from 0x%x\n", baseaddress);
227
		/* Write the frame to the buffer */
228
		xemaclite_alignedwrite(ptr, baseaddress, len);
229 230 231 232
		out_be32 (baseaddress + XEL_TPLR_OFFSET,(len &
			(XEL_TPLR_LENGTH_MASK_HI | XEL_TPLR_LENGTH_MASK_LO)));
		reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
		reg |= XEL_TSR_XMIT_BUSY_MASK;
M
Michal Simek 已提交
233
		if ((reg & XEL_TSR_XMIT_IE_MASK) != 0)
234 235
			reg |= XEL_TSR_XMIT_ACTIVE_MASK;
		out_be32 (baseaddress + XEL_TSR_OFFSET, reg);
236
		return 0;
237
	}
238 239 240 241 242

	if (emaclite->txpp) {
		/* Switch to second buffer */
		baseaddress ^= XEL_BUFFER_OFFSET;
		/* Determine if the expected buffer address is empty */
243
		reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
244 245 246 247 248
		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);
			/* Write the frame to the buffer */
249
			xemaclite_alignedwrite(ptr, baseaddress, len);
250 251 252 253 254 255 256 257 258
			out_be32 (baseaddress + XEL_TPLR_OFFSET, (len &
				(XEL_TPLR_LENGTH_MASK_HI |
					XEL_TPLR_LENGTH_MASK_LO)));
			reg = in_be32 (baseaddress + XEL_TSR_OFFSET);
			reg |= XEL_TSR_XMIT_BUSY_MASK;
			if ((reg & XEL_TSR_XMIT_IE_MASK) != 0)
				reg |= XEL_TSR_XMIT_ACTIVE_MASK;
			out_be32 (baseaddress + XEL_TSR_OFFSET, reg);
			return 0;
259 260
		}
	}
261

M
Michal Simek 已提交
262
	puts("Error while sending frame\n");
263
	return -1;
264 265
}

M
Michal Simek 已提交
266
static int emaclite_recv(struct eth_device *dev)
267
{
M
Michal Simek 已提交
268 269 270
	u32 length;
	u32 reg;
	u32 baseaddress;
271
	struct xemaclite *emaclite = dev->priv;
272

273
	baseaddress = dev->iobase + emaclite->nextrxbuffertouse;
274
	reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
M
Michal Simek 已提交
275
	debug("Testing data at address 0x%x\n", baseaddress);
276
	if ((reg & XEL_RSR_RECV_DONE_MASK) == XEL_RSR_RECV_DONE_MASK) {
277 278
		if (emaclite->rxpp)
			emaclite->nextrxbuffertouse ^= XEL_BUFFER_OFFSET;
279
	} else {
280 281

		if (!emaclite->rxpp) {
M
Michal Simek 已提交
282
			debug("No data was available - address 0x%x\n",
283
								baseaddress);
284
			return 0;
285 286 287 288 289 290 291 292 293
		} else {
			baseaddress ^= XEL_BUFFER_OFFSET;
			reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
			if ((reg & XEL_RSR_RECV_DONE_MASK) !=
						XEL_RSR_RECV_DONE_MASK) {
				debug("No data was available - address 0x%x\n",
						baseaddress);
				return 0;
			}
294 295 296
		}
	}
	/* Get the length of the frame that arrived */
297
	switch(((ntohl(in_be32 (baseaddress + XEL_RXBUFF_OFFSET + 0xC))) &
298 299 300
			0xFFFF0000 ) >> 16) {
		case 0x806:
			length = 42 + 20; /* FIXME size of ARP */
M
Michal Simek 已提交
301
			debug("ARP Packet\n");
302 303 304
			break;
		case 0x800:
			length = 14 + 14 +
M
Michal Simek 已提交
305 306 307
			(((ntohl(in_be32 (baseaddress + XEL_RXBUFF_OFFSET +
						0x10))) & 0xFFFF0000) >> 16);
			/* FIXME size of IP packet */
308 309 310
			debug ("IP Packet\n");
			break;
		default:
M
Michal Simek 已提交
311 312
			debug("Other Packet\n");
			length = PKTSIZE;
313 314 315
			break;
	}

M
Michal Simek 已提交
316
	xemaclite_alignedread((u32 *) (baseaddress + XEL_RXBUFF_OFFSET),
317 318 319 320 321 322 323
			etherrxbuff, length);

	/* Acknowledge the frame */
	reg = in_be32 (baseaddress + XEL_RSR_OFFSET);
	reg &= ~XEL_RSR_RECV_DONE_MASK;
	out_be32 (baseaddress + XEL_RSR_OFFSET, reg);

M
Michal Simek 已提交
324
	debug("Packet receive from 0x%x, length %dB\n", baseaddress, length);
325
	net_process_received_packet((uchar *)etherrxbuff, length);
326
	return length;
327 328

}
M
Michal Simek 已提交
329

330 331
int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr,
							int txpp, int rxpp)
M
Michal Simek 已提交
332 333
{
	struct eth_device *dev;
334
	struct xemaclite *emaclite;
M
Michal Simek 已提交
335

336
	dev = calloc(1, sizeof(*dev));
M
Michal Simek 已提交
337
	if (dev == NULL)
338
		return -1;
M
Michal Simek 已提交
339

340 341 342 343 344 345 346 347
	emaclite = calloc(1, sizeof(struct xemaclite));
	if (emaclite == NULL) {
		free(dev);
		return -1;
	}

	dev->priv = emaclite;

348 349
	emaclite->txpp = txpp;
	emaclite->rxpp = rxpp;
350

351
	sprintf(dev->name, "Xelite.%lx", base_addr);
M
Michal Simek 已提交
352 353 354 355 356 357 358 359 360

	dev->iobase = base_addr;
	dev->init = emaclite_init;
	dev->halt = emaclite_halt;
	dev->send = emaclite_send;
	dev->recv = emaclite_recv;

	eth_register(dev);

361
	return 1;
M
Michal Simek 已提交
362
}