blob: 3ddf91793cd4baad16733360bf45eed3ce60e232 [file] [log] [blame]
wdenkef5a9672003-12-07 00:46:27 +00001/*
2 * Realtek 8019AS Ethernet
3 * (C) Copyright 2002-2003
4 * Xue Ligong(lgxue@hotmail.com),Wang Kehao, ESLAB, whut.edu.cn
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25/*
26 * This code works in 8bit mode.
27 * If you need to work in 16bit mode, PLS change it!
28 */
29
30#include <common.h>
31#include <command.h>
32#include "rtl8019.h"
33#include <net.h>
34
wdenkef5a9672003-12-07 00:46:27 +000035/* packet page register access functions */
36
wdenkef5a9672003-12-07 00:46:27 +000037static unsigned char get_reg (unsigned int regno)
38{
39 return (*(unsigned char *) regno);
40}
41
wdenkef5a9672003-12-07 00:46:27 +000042static void put_reg (unsigned int regno, unsigned char val)
43{
44 *(volatile unsigned char *) regno = val;
45}
46
47static void eth_reset (void)
48{
49 unsigned char ucTemp;
50
51 /* reset NIC */
52 ucTemp = get_reg (RTL8019_RESET);
53 put_reg (RTL8019_RESET, ucTemp);
54 put_reg (RTL8019_INTERRUPTSTATUS, 0xff);
55 udelay (2000); /* wait for 2ms */
56}
57
58void rtl8019_get_enetaddr (uchar * addr)
59{
60 unsigned char i;
61 unsigned char temp;
62
63 eth_reset ();
64
65 put_reg (RTL8019_COMMAND, RTL8019_REMOTEDMARD);
66 put_reg (RTL8019_DATACONFIGURATION, 0x48);
67 put_reg (RTL8019_REMOTESTARTADDRESS0, 0x00);
68 put_reg (RTL8019_REMOTESTARTADDRESS1, 0x00);
69 put_reg (RTL8019_REMOTEBYTECOUNT0, 12);
70 put_reg (RTL8019_REMOTEBYTECOUNT1, 0x00);
71 put_reg (RTL8019_COMMAND, RTL8019_REMOTEDMARD);
72 printf ("MAC: ");
73 for (i = 0; i < 6; i++) {
74 temp = get_reg (RTL8019_DMA_DATA);
75 *addr++ = temp;
76 temp = get_reg (RTL8019_DMA_DATA);
77 printf ("%x:", temp);
78 }
79
80 while ((!get_reg (RTL8019_INTERRUPTSTATUS) & 0x40));
81 printf ("\b \n");
82 put_reg (RTL8019_REMOTEBYTECOUNT0, 0x00);
83 put_reg (RTL8019_REMOTEBYTECOUNT1, 0x00);
84 put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
85}
86
wdenkef5a9672003-12-07 00:46:27 +000087void eth_halt (void)
88{
89 put_reg (RTL8019_COMMAND, 0x01);
90}
91
92int eth_init (bd_t * bd)
93{
94 eth_reset ();
95 put_reg (RTL8019_COMMAND, RTL8019_PAGE0STOP);
96 put_reg (RTL8019_DATACONFIGURATION, 0x48);
97 put_reg (RTL8019_REMOTEBYTECOUNT0, 0x00);
98 put_reg (RTL8019_REMOTEBYTECOUNT1, 0x00);
99 put_reg (RTL8019_RECEIVECONFIGURATION, 0x00); /*00; */
100 put_reg (RTL8019_TRANSMITPAGE, RTL8019_TPSTART);
101 put_reg (RTL8019_TRANSMITCONFIGURATION, 0x02);
102 put_reg (RTL8019_PAGESTART, RTL8019_PSTART);
103 put_reg (RTL8019_BOUNDARY, RTL8019_PSTART);
104 put_reg (RTL8019_PAGESTOP, RTL8019_PSTOP);
105 put_reg (RTL8019_INTERRUPTSTATUS, 0xff);
106 put_reg (RTL8019_INTERRUPTMASK, 0x11); /*b; */
107 put_reg (RTL8019_COMMAND, RTL8019_PAGE1STOP);
108 put_reg (RTL8019_PHYSICALADDRESS0, bd->bi_enetaddr[0]);
109 put_reg (RTL8019_PHYSICALADDRESS1, bd->bi_enetaddr[1]);
110 put_reg (RTL8019_PHYSICALADDRESS2, bd->bi_enetaddr[2]);
111 put_reg (RTL8019_PHYSICALADDRESS3, bd->bi_enetaddr[3]);
112 put_reg (RTL8019_PHYSICALADDRESS4, bd->bi_enetaddr[4]);
113 put_reg (RTL8019_PHYSICALADDRESS5, bd->bi_enetaddr[5]);
114 put_reg (RTL8019_MULTIADDRESS0, 0x00);
115 put_reg (RTL8019_MULTIADDRESS1, 0x00);
116 put_reg (RTL8019_MULTIADDRESS2, 0x00);
117 put_reg (RTL8019_MULTIADDRESS3, 0x00);
118 put_reg (RTL8019_MULTIADDRESS4, 0x00);
119 put_reg (RTL8019_MULTIADDRESS5, 0x00);
120 put_reg (RTL8019_MULTIADDRESS6, 0x00);
121 put_reg (RTL8019_MULTIADDRESS7, 0x00);
122 put_reg (RTL8019_CURRENT, RTL8019_PSTART);
123 put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
124 put_reg (RTL8019_TRANSMITCONFIGURATION, 0xe0); /*58; */
125
126 return 0;
127}
128
wdenkef5a9672003-12-07 00:46:27 +0000129static unsigned char nic_to_pc (void)
130{
131 unsigned char rec_head_status;
132 unsigned char next_packet_pointer;
133 unsigned char packet_length0;
134 unsigned char packet_length1;
135 unsigned short rxlen = 0;
136 unsigned int i = 4;
137 unsigned char current_point;
138 unsigned char *addr;
139
140 /*
141 * The RTL8019's first 4B is packet status,page of next packet
142 * and packet length(2B).So we receive the fist 4B.
143 */
144 put_reg (RTL8019_REMOTESTARTADDRESS1, get_reg (RTL8019_BOUNDARY));
145 put_reg (RTL8019_REMOTESTARTADDRESS0, 0x00);
146 put_reg (RTL8019_REMOTEBYTECOUNT1, 0x00);
147 put_reg (RTL8019_REMOTEBYTECOUNT0, 0x04);
148
149 put_reg (RTL8019_COMMAND, RTL8019_REMOTEDMARD);
150
151 rec_head_status = get_reg (RTL8019_DMA_DATA);
152 next_packet_pointer = get_reg (RTL8019_DMA_DATA);
153 packet_length0 = get_reg (RTL8019_DMA_DATA);
154 packet_length1 = get_reg (RTL8019_DMA_DATA);
155
156 put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
157 /*Packet length is in two 8bit registers */
158 rxlen = packet_length1;
159 rxlen = (((rxlen << 8) & 0xff00) + packet_length0);
160 rxlen -= 4;
161
162 if (rxlen > PKTSIZE_ALIGN + PKTALIGN)
163 printf ("packet too big!\n");
164
165 /*Receive the packet */
166 put_reg (RTL8019_REMOTESTARTADDRESS0, 0x04);
167 put_reg (RTL8019_REMOTESTARTADDRESS1, get_reg (RTL8019_BOUNDARY));
168
169 put_reg (RTL8019_REMOTEBYTECOUNT0, (rxlen & 0xff));
170 put_reg (RTL8019_REMOTEBYTECOUNT1, ((rxlen >> 8) & 0xff));
171
172
173 put_reg (RTL8019_COMMAND, RTL8019_REMOTEDMARD);
174
175 for (addr = (unsigned char *) NetRxPackets[0], i = rxlen; i > 0; i--)
176 *addr++ = get_reg (RTL8019_DMA_DATA);
177 /* Pass the packet up to the protocol layers. */
178 NetReceive (NetRxPackets[0], rxlen);
179
180 while (!(get_reg (RTL8019_INTERRUPTSTATUS)) & 0x40); /* wait for the op. */
181
182 /*
183 * To test whether the packets are all received,get the
184 * location of current point
185 */
186 put_reg (RTL8019_COMMAND, RTL8019_PAGE1);
187 current_point = get_reg (RTL8019_CURRENT);
188 put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
189 put_reg (RTL8019_BOUNDARY, next_packet_pointer);
190 return current_point;
191}
192
193/* Get a data block via Ethernet */
194extern int eth_rx (void)
195{
196 unsigned char temp, current_point;
197
198 put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
199
200 while (1) {
201 temp = get_reg (RTL8019_INTERRUPTSTATUS);
202
203 if (temp & 0x90) {
204 /*overflow */
205 put_reg (RTL8019_COMMAND, RTL8019_PAGE0STOP);
206 udelay (2000);
207 put_reg (RTL8019_REMOTEBYTECOUNT0, 0);
208 put_reg (RTL8019_REMOTEBYTECOUNT1, 0);
209 put_reg (RTL8019_TRANSMITCONFIGURATION, 2);
210 do {
211 current_point = nic_to_pc ();
212 } while (get_reg (RTL8019_BOUNDARY) != current_point);
213
214 put_reg (RTL8019_TRANSMITCONFIGURATION, 0xe0);
215 }
216
217 if (temp & 0x1) {
218 /*packet received */
219 do {
220 put_reg (RTL8019_INTERRUPTSTATUS, 0x01);
221 current_point = nic_to_pc ();
222 } while (get_reg (RTL8019_BOUNDARY) != current_point);
223 }
224
225 if (!(temp & 0x1))
226 return 0;
227 /* done and exit. */
228 }
229}
230
231/* Send a data block via Ethernet. */
232extern int eth_send (volatile void *packet, int length)
233{
234 volatile unsigned char *p;
235 unsigned int pn;
236
237 pn = length;
238 p = (volatile unsigned char *) packet;
239
240 while (get_reg (RTL8019_COMMAND) == RTL8019_TRANSMIT);
241
242 put_reg (RTL8019_REMOTESTARTADDRESS0, 0);
243 put_reg (RTL8019_REMOTESTARTADDRESS1, RTL8019_TPSTART);
244 put_reg (RTL8019_REMOTEBYTECOUNT0, (pn & 0xff));
245 put_reg (RTL8019_REMOTEBYTECOUNT1, ((pn >> 8) & 0xff));
246
247 put_reg (RTL8019_COMMAND, RTL8019_REMOTEDMAWR);
248 while (pn > 0) {
249 put_reg (RTL8019_DMA_DATA, *p++);
250 pn--;
251 }
252
253 pn = length;
254
255 while (pn < 60) { /*Padding */
256 put_reg (RTL8019_DMA_DATA, 0);
257 pn++;
258 }
259
260 while (!(get_reg (RTL8019_INTERRUPTSTATUS)) & 0x40);
261
262 put_reg (RTL8019_INTERRUPTSTATUS, 0x40);
263 put_reg (RTL8019_TRANSMITPAGE, RTL8019_TPSTART);
264 put_reg (RTL8019_TRANSMITBYTECOUNT0, (pn & 0xff));
265 put_reg (RTL8019_TRANSMITBYTECOUNT1, ((pn >> 8 & 0xff)));
266 put_reg (RTL8019_COMMAND, RTL8019_TRANSMIT);
267
268 return 0;
269}