blob: a3c37baab9cc3ee7ec2eced44ca36fb0bb2e9b45 [file] [log] [blame]
wdenke537b3b2004-02-23 23:54:43 +00001/******************************************************************************
2*
3* Author: Xilinx, Inc.
4*
5*
6* This program is free software; you can redistribute it and/or modify it
7* under the terms of the GNU General Public License as published by the
8* Free Software Foundation; either version 2 of the License, or (at your
9* option) any later version.
10*
11*
12* XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" AS A
13* COURTESY TO YOU. BY PROVIDING THIS DESIGN, CODE, OR INFORMATION AS
14* ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, APPLICATION OR STANDARD,
15* XILINX IS MAKING NO REPRESENTATION THAT THIS IMPLEMENTATION IS FREE
16* FROM ANY CLAIMS OF INFRINGEMENT, AND YOU ARE RESPONSIBLE FOR OBTAINING
17* ANY THIRD PARTY RIGHTS YOU MAY REQUIRE FOR YOUR IMPLEMENTATION.
18* XILINX EXPRESSLY DISCLAIMS ANY WARRANTY WHATSOEVER WITH RESPECT TO
19* THE ADEQUACY OF THE IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY
20* WARRANTIES OR REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM
21* CLAIMS OF INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND
22* FITNESS FOR A PARTICULAR PURPOSE.
23*
24*
25* Xilinx hardware products are not intended for use in life support
26* appliances, devices, or systems. Use in such applications is
27* expressly prohibited.
28*
29*
30* (c) Copyright 2002-2004 Xilinx Inc.
31* All rights reserved.
32*
33*
34* You should have received a copy of the GNU General Public License along
35* with this program; if not, write to the Free Software Foundation, Inc.,
36* 675 Mass Ave, Cambridge, MA 02139, USA.
37*
38******************************************************************************/
39
40#include <common.h>
41#include <net.h>
42#include <configs/ml300.h>
43#include "xparameters.h"
44#include "xemac.h"
45
46#if defined(XPAR_EMAC_0_DEVICE_ID)
47/*
48 * ENET_MAX_MTU and ENET_MAX_MTU_ALIGNED are set from
49 * PKTSIZE and PKTSIZE_ALIGN (include/net.h)
50 */
51
52#define ENET_MAX_MTU PKTSIZE
53#define ENET_MAX_MTU_ALIGNED PKTSIZE_ALIGN
54#define ENET_ADDR_LENGTH 6
55
56static XEmac Emac;
57static char etherrxbuff[PKTSIZE_ALIGN]; /* Receive buffer */
58
59/* hardcoded MAC address for the Xilinx EMAC Core */
60static u8 EMACAddr[ENET_ADDR_LENGTH] = { 0x00, 0x0a, 0x35, 0x00, 0x22, 0x01 };
61
62static int initialized = 0;
63
64void
65eth_halt(void)
66{
67 if (initialized)
68 (void) XEmac_Stop(&Emac);
69}
70
71int
72eth_init(bd_t * bis)
73{
74 u32 Options;
75 XStatus Result;
76
77#ifdef DEBUG
78 printf("EMAC Initialization Started\n\r");
79#endif
80
81 Result = XEmac_Initialize(&Emac, XPAR_EMAC_0_DEVICE_ID);
82 if (Result != XST_SUCCESS) {
83 return 0;
84 }
85
86 /* make sure the Emac is stopped before it is started */
87 (void) XEmac_Stop(&Emac);
88
89 memcpy(bis->bi_enetaddr, EMACAddr, 6);
90 Result = XEmac_SetMacAddress(&Emac, EMACAddr);
91 if (Result != XST_SUCCESS) {
92 return 0;
93 }
94
95 Options =
96 (XEM_POLLED_OPTION | XEM_UNICAST_OPTION | XEM_BROADCAST_OPTION |
97 XEM_FDUPLEX_OPTION | XEM_INSERT_FCS_OPTION |
98 XEM_INSERT_PAD_OPTION);
99 Result = XEmac_SetOptions(&Emac, Options);
100 if (Result != XST_SUCCESS) {
101 return 0;
102 }
103
104 Result = XEmac_Start(&Emac);
105 if (Result != XST_SUCCESS) {
106 return 0;
107 }
108#ifdef DEBUG
109 printf("EMAC Initialization complete\n\r");
110#endif
111
112 initialized = 1;
113
114 return (0);
115}
116
117/*-----------------------------------------------------------------------------+
118+-----------------------------------------------------------------------------*/
119int
120eth_send(volatile void *ptr, int len)
121{
122 XStatus Result;
123
124 if (len > ENET_MAX_MTU)
125 len = ENET_MAX_MTU;
126
127 Result = XEmac_PollSend(&Emac, (u8 *) ptr, len);
128 if (Result == XST_SUCCESS) {
129 return (1);
130 } else {
131 printf("Error while sending frame\n\r");
132 return (0);
133 }
134
135}
136
137int
138eth_rx(void)
139{
140 u32 RecvFrameLength;
141 XStatus Result;
142
143 RecvFrameLength = PKTSIZE;
144 Result = XEmac_PollRecv(&Emac, (u8 *) etherrxbuff, &RecvFrameLength);
145 if (Result == XST_SUCCESS) {
146 NetReceive(etherrxbuff, RecvFrameLength);
147 return (1);
148 } else {
149 return (0);
150 }
151}
152
153#endif