blob: a4f02141063621588bd4ca837b5e7e36563091c6 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002 Wolfgang Grandegger, wg@denx.de.
3 *
4 * This driver for AMD PCnet network controllers is derived from the
5 * Linux driver pcnet32.c written 1996-1999 by Thomas Bogendoerfer.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * 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 */
25
26#include <common.h>
27#include <malloc.h>
28#include <net.h>
29#include <asm/io.h>
30#include <pci.h>
31
32#if 0
Wolfgang Denk11ea26f2008-04-24 23:44:26 +020033#define PCNET_DEBUG_LEVEL 0 /* 0=off, 1=init, 2=rx/tx */
wdenkc6097192002-11-03 00:24:07 +000034#endif
35
36#if PCNET_DEBUG_LEVEL > 0
wdenk39539882004-07-01 16:30:44 +000037#define PCNET_DEBUG1(fmt,args...) printf (fmt ,##args)
wdenkc6097192002-11-03 00:24:07 +000038#if PCNET_DEBUG_LEVEL > 1
wdenk39539882004-07-01 16:30:44 +000039#define PCNET_DEBUG2(fmt,args...) printf (fmt ,##args)
wdenkc6097192002-11-03 00:24:07 +000040#else
wdenk39539882004-07-01 16:30:44 +000041#define PCNET_DEBUG2(fmt,args...)
wdenkc6097192002-11-03 00:24:07 +000042#endif
43#else
wdenk39539882004-07-01 16:30:44 +000044#define PCNET_DEBUG1(fmt,args...)
45#define PCNET_DEBUG2(fmt,args...)
wdenkc6097192002-11-03 00:24:07 +000046#endif
47
wdenkc6097192002-11-03 00:24:07 +000048#if !defined(CONF_PCNET_79C973) && defined(CONF_PCNET_79C975)
49#error "Macro for PCnet chip version is not defined!"
50#endif
51
52/*
53 * Set the number of Tx and Rx buffers, using Log_2(# buffers).
54 * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
55 * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
56 */
57#define PCNET_LOG_TX_BUFFERS 0
58#define PCNET_LOG_RX_BUFFERS 2
59
60#define TX_RING_SIZE (1 << (PCNET_LOG_TX_BUFFERS))
61#define TX_RING_LEN_BITS ((PCNET_LOG_TX_BUFFERS) << 12)
62
63#define RX_RING_SIZE (1 << (PCNET_LOG_RX_BUFFERS))
64#define RX_RING_LEN_BITS ((PCNET_LOG_RX_BUFFERS) << 4)
65
66#define PKT_BUF_SZ 1544
67
68/* The PCNET Rx and Tx ring descriptors. */
69struct pcnet_rx_head {
Wolfgang Denk11ea26f2008-04-24 23:44:26 +020070 u32 base;
71 s16 buf_length;
72 s16 status;
73 u32 msg_length;
74 u32 reserved;
wdenkc6097192002-11-03 00:24:07 +000075};
76
77struct pcnet_tx_head {
Wolfgang Denk11ea26f2008-04-24 23:44:26 +020078 u32 base;
79 s16 length;
80 s16 status;
81 u32 misc;
82 u32 reserved;
wdenkc6097192002-11-03 00:24:07 +000083};
84
85/* The PCNET 32-Bit initialization block, described in databook. */
86struct pcnet_init_block {
Wolfgang Denk11ea26f2008-04-24 23:44:26 +020087 u16 mode;
88 u16 tlen_rlen;
89 u8 phys_addr[6];
90 u16 reserved;
91 u32 filter[2];
92 /* Receive and transmit ring base, along with extra bits. */
93 u32 rx_ring;
94 u32 tx_ring;
95 u32 reserved2;
wdenkc6097192002-11-03 00:24:07 +000096};
97
98typedef struct pcnet_priv {
Wolfgang Denk11ea26f2008-04-24 23:44:26 +020099 struct pcnet_rx_head rx_ring[RX_RING_SIZE];
100 struct pcnet_tx_head tx_ring[TX_RING_SIZE];
101 struct pcnet_init_block init_block;
102 /* Receive Buffer space */
103 unsigned char rx_buf[RX_RING_SIZE][PKT_BUF_SZ + 4];
104 int cur_rx;
105 int cur_tx;
wdenkc6097192002-11-03 00:24:07 +0000106} pcnet_priv_t;
107
108static pcnet_priv_t *lp;
109
110/* Offsets from base I/O address for WIO mode */
111#define PCNET_RDP 0x10
112#define PCNET_RAP 0x12
113#define PCNET_RESET 0x14
114#define PCNET_BDP 0x16
115
116static u16 pcnet_read_csr (struct eth_device *dev, int index)
117{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200118 outw (index, dev->iobase + PCNET_RAP);
119 return inw (dev->iobase + PCNET_RDP);
wdenkc6097192002-11-03 00:24:07 +0000120}
121
122static void pcnet_write_csr (struct eth_device *dev, int index, u16 val)
123{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200124 outw (index, dev->iobase + PCNET_RAP);
125 outw (val, dev->iobase + PCNET_RDP);
wdenkc6097192002-11-03 00:24:07 +0000126}
127
128static u16 pcnet_read_bcr (struct eth_device *dev, int index)
129{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200130 outw (index, dev->iobase + PCNET_RAP);
131 return inw (dev->iobase + PCNET_BDP);
wdenkc6097192002-11-03 00:24:07 +0000132}
133
134static void pcnet_write_bcr (struct eth_device *dev, int index, u16 val)
135{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200136 outw (index, dev->iobase + PCNET_RAP);
137 outw (val, dev->iobase + PCNET_BDP);
wdenkc6097192002-11-03 00:24:07 +0000138}
139
140static void pcnet_reset (struct eth_device *dev)
141{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200142 inw (dev->iobase + PCNET_RESET);
wdenkc6097192002-11-03 00:24:07 +0000143}
144
145static int pcnet_check (struct eth_device *dev)
146{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200147 outw (88, dev->iobase + PCNET_RAP);
148 return (inw (dev->iobase + PCNET_RAP) == 88);
wdenkc6097192002-11-03 00:24:07 +0000149}
150
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200151static int pcnet_init (struct eth_device *dev, bd_t * bis);
152static int pcnet_send (struct eth_device *dev, volatile void *packet,
153 int length);
154static int pcnet_recv (struct eth_device *dev);
155static void pcnet_halt (struct eth_device *dev);
156static int pcnet_probe (struct eth_device *dev, bd_t * bis, int dev_num);
wdenkc6097192002-11-03 00:24:07 +0000157
158#define PCI_TO_MEM(d,a) pci_phys_to_mem((pci_dev_t)d->priv, (u_long)(a))
159#define PCI_TO_MEM_LE(d,a) (u32)(cpu_to_le32(PCI_TO_MEM(d,a)))
160
161static struct pci_device_id supported[] = {
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200162 {PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE},
163 {}
wdenkc6097192002-11-03 00:24:07 +0000164};
165
166
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200167int pcnet_initialize (bd_t * bis)
wdenkc6097192002-11-03 00:24:07 +0000168{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200169 pci_dev_t devbusfn;
170 struct eth_device *dev;
171 u16 command, status;
172 int dev_nr = 0;
wdenkc6097192002-11-03 00:24:07 +0000173
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200174 PCNET_DEBUG1 ("\npcnet_initialize...\n");
wdenkc6097192002-11-03 00:24:07 +0000175
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200176 for (dev_nr = 0;; dev_nr++) {
wdenkc6097192002-11-03 00:24:07 +0000177
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200178 /*
179 * Find the PCnet PCI device(s).
180 */
181 if ((devbusfn = pci_find_devices (supported, dev_nr)) < 0) {
182 break;
183 }
184
185 /*
186 * Allocate and pre-fill the device structure.
187 */
188 dev = (struct eth_device *) malloc (sizeof *dev);
189 dev->priv = (void *) devbusfn;
190 sprintf (dev->name, "pcnet#%d", dev_nr);
191
192 /*
193 * Setup the PCI device.
194 */
195 pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_0,
196 (unsigned int *) &dev->iobase);
Vlad Lungu38656312007-10-10 23:02:09 +0300197 dev->iobase=pci_io_to_phys (devbusfn, dev->iobase);
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200198 dev->iobase &= ~0xf;
199
200 PCNET_DEBUG1 ("%s: devbusfn=0x%x iobase=0x%x: ",
201 dev->name, devbusfn, dev->iobase);
202
203 command = PCI_COMMAND_IO | PCI_COMMAND_MASTER;
204 pci_write_config_word (devbusfn, PCI_COMMAND, command);
205 pci_read_config_word (devbusfn, PCI_COMMAND, &status);
206 if ((status & command) != command) {
207 printf ("%s: Couldn't enable IO access or Bus Mastering\n", dev->name);
208 free (dev);
209 continue;
210 }
211
212 pci_write_config_byte (devbusfn, PCI_LATENCY_TIMER, 0x40);
213
214 /*
215 * Probe the PCnet chip.
216 */
217 if (pcnet_probe (dev, bis, dev_nr) < 0) {
218 free (dev);
219 continue;
220 }
221
222 /*
223 * Setup device structure and register the driver.
224 */
225 dev->init = pcnet_init;
226 dev->halt = pcnet_halt;
227 dev->send = pcnet_send;
228 dev->recv = pcnet_recv;
229
230 eth_register (dev);
wdenkc6097192002-11-03 00:24:07 +0000231 }
232
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200233 udelay (10 * 1000);
wdenkc6097192002-11-03 00:24:07 +0000234
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200235 return dev_nr;
wdenkc6097192002-11-03 00:24:07 +0000236}
237
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200238static int pcnet_probe (struct eth_device *dev, bd_t * bis, int dev_nr)
wdenkc6097192002-11-03 00:24:07 +0000239{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200240 int chip_version;
241 char *chipname;
242
wdenkc6097192002-11-03 00:24:07 +0000243#ifdef PCNET_HAS_PROM
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200244 int i;
wdenkc6097192002-11-03 00:24:07 +0000245#endif
246
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200247 /* Reset the PCnet controller */
248 pcnet_reset (dev);
wdenkc6097192002-11-03 00:24:07 +0000249
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200250 /* Check if register access is working */
251 if (pcnet_read_csr (dev, 0) != 4 || !pcnet_check (dev)) {
252 printf ("%s: CSR register access check failed\n", dev->name);
253 return -1;
254 }
wdenkc6097192002-11-03 00:24:07 +0000255
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200256 /* Identify the chip */
257 chip_version =
258 pcnet_read_csr (dev, 88) | (pcnet_read_csr (dev, 89) << 16);
259 if ((chip_version & 0xfff) != 0x003)
260 return -1;
261 chip_version = (chip_version >> 12) & 0xffff;
262 switch (chip_version) {
263 case 0x2621:
264 chipname = "PCnet/PCI II 79C970A"; /* PCI */
265 break;
wdenkc6097192002-11-03 00:24:07 +0000266#ifdef CONFIG_PCNET_79C973
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200267 case 0x2625:
268 chipname = "PCnet/FAST III 79C973"; /* PCI */
269 break;
wdenkc6097192002-11-03 00:24:07 +0000270#endif
271#ifdef CONFIG_PCNET_79C975
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200272 case 0x2627:
273 chipname = "PCnet/FAST III 79C975"; /* PCI */
274 break;
wdenkc6097192002-11-03 00:24:07 +0000275#endif
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200276 default:
277 printf ("%s: PCnet version %#x not supported\n",
278 dev->name, chip_version);
279 return -1;
280 }
wdenkc6097192002-11-03 00:24:07 +0000281
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200282 PCNET_DEBUG1 ("AMD %s\n", chipname);
wdenkc6097192002-11-03 00:24:07 +0000283
284#ifdef PCNET_HAS_PROM
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200285 /*
286 * In most chips, after a chip reset, the ethernet address is read from
287 * the station address PROM at the base address and programmed into the
288 * "Physical Address Registers" CSR12-14.
289 */
290 for (i = 0; i < 3; i++) {
291 unsigned int val;
292
293 val = pcnet_read_csr (dev, i + 12) & 0x0ffff;
294 /* There may be endianness issues here. */
295 dev->enetaddr[2 * i] = val & 0x0ff;
296 dev->enetaddr[2 * i + 1] = (val >> 8) & 0x0ff;
297 }
wdenkc6097192002-11-03 00:24:07 +0000298#endif /* PCNET_HAS_PROM */
299
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200300 return 0;
wdenkc6097192002-11-03 00:24:07 +0000301}
302
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200303static int pcnet_init (struct eth_device *dev, bd_t * bis)
wdenkc6097192002-11-03 00:24:07 +0000304{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200305 int i, val;
306 u32 addr;
wdenkc6097192002-11-03 00:24:07 +0000307
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200308 PCNET_DEBUG1 ("%s: pcnet_init...\n", dev->name);
wdenkc6097192002-11-03 00:24:07 +0000309
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200310 /* Switch pcnet to 32bit mode */
311 pcnet_write_bcr (dev, 20, 2);
wdenkc6097192002-11-03 00:24:07 +0000312
313#ifdef CONFIG_PN62
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200314 /* Setup LED registers */
315 val = pcnet_read_bcr (dev, 2) | 0x1000;
316 pcnet_write_bcr (dev, 2, val); /* enable LEDPE */
317 pcnet_write_bcr (dev, 4, 0x5080); /* 100MBit */
318 pcnet_write_bcr (dev, 5, 0x40c0); /* LNKSE */
319 pcnet_write_bcr (dev, 6, 0x4090); /* TX Activity */
320 pcnet_write_bcr (dev, 7, 0x4084); /* RX Activity */
wdenkc6097192002-11-03 00:24:07 +0000321#endif
322
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200323 /* Set/reset autoselect bit */
324 val = pcnet_read_bcr (dev, 2) & ~2;
325 val |= 2;
326 pcnet_write_bcr (dev, 2, val);
wdenkc6097192002-11-03 00:24:07 +0000327
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200328 /* Enable auto negotiate, setup, disable fd */
329 val = pcnet_read_bcr (dev, 32) & ~0x98;
330 val |= 0x20;
331 pcnet_write_bcr (dev, 32, val);
wdenkc6097192002-11-03 00:24:07 +0000332
wdenkc6097192002-11-03 00:24:07 +0000333 /*
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200334 * We only maintain one structure because the drivers will never
335 * be used concurrently. In 32bit mode the RX and TX ring entries
336 * must be aligned on 16-byte boundaries.
wdenkc6097192002-11-03 00:24:07 +0000337 */
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200338 if (lp == NULL) {
339 addr = (u32) malloc (sizeof (pcnet_priv_t) + 0x10);
340 addr = (addr + 0xf) & ~0xf;
341 lp = (pcnet_priv_t *) addr;
wdenkc6097192002-11-03 00:24:07 +0000342 }
wdenkc6097192002-11-03 00:24:07 +0000343
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200344 lp->init_block.mode = cpu_to_le16 (0x0000);
345 lp->init_block.filter[0] = 0x00000000;
346 lp->init_block.filter[1] = 0x00000000;
wdenkc6097192002-11-03 00:24:07 +0000347
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200348 /*
349 * Initialize the Rx ring.
350 */
351 lp->cur_rx = 0;
352 for (i = 0; i < RX_RING_SIZE; i++) {
353 lp->rx_ring[i].base = PCI_TO_MEM_LE (dev, lp->rx_buf[i]);
354 lp->rx_ring[i].buf_length = cpu_to_le16 (-PKT_BUF_SZ);
355 lp->rx_ring[i].status = cpu_to_le16 (0x8000);
356 PCNET_DEBUG1
357 ("Rx%d: base=0x%x buf_length=0x%hx status=0x%hx\n", i,
358 lp->rx_ring[i].base, lp->rx_ring[i].buf_length,
359 lp->rx_ring[i].status);
wdenkc6097192002-11-03 00:24:07 +0000360 }
wdenkc6097192002-11-03 00:24:07 +0000361
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200362 /*
363 * Initialize the Tx ring. The Tx buffer address is filled in as
364 * needed, but we do need to clear the upper ownership bit.
365 */
366 lp->cur_tx = 0;
367 for (i = 0; i < TX_RING_SIZE; i++) {
368 lp->tx_ring[i].base = 0;
369 lp->tx_ring[i].status = 0;
370 }
371
372 /*
373 * Setup Init Block.
374 */
375 PCNET_DEBUG1 ("Init block at 0x%p: MAC", &lp->init_block);
376
377 for (i = 0; i < 6; i++) {
378 lp->init_block.phys_addr[i] = dev->enetaddr[i];
379 PCNET_DEBUG1 (" %02x", lp->init_block.phys_addr[i]);
380 }
381
382 lp->init_block.tlen_rlen = cpu_to_le16 (TX_RING_LEN_BITS |
383 RX_RING_LEN_BITS);
384 lp->init_block.rx_ring = PCI_TO_MEM_LE (dev, lp->rx_ring);
385 lp->init_block.tx_ring = PCI_TO_MEM_LE (dev, lp->tx_ring);
386
387 PCNET_DEBUG1 ("\ntlen_rlen=0x%x rx_ring=0x%x tx_ring=0x%x\n",
388 lp->init_block.tlen_rlen,
389 lp->init_block.rx_ring, lp->init_block.tx_ring);
390
391 /*
392 * Tell the controller where the Init Block is located.
393 */
394 addr = PCI_TO_MEM (dev, &lp->init_block);
395 pcnet_write_csr (dev, 1, addr & 0xffff);
396 pcnet_write_csr (dev, 2, (addr >> 16) & 0xffff);
397
398 pcnet_write_csr (dev, 4, 0x0915);
399 pcnet_write_csr (dev, 0, 0x0001); /* start */
400
401 /* Wait for Init Done bit */
402 for (i = 10000; i > 0; i--) {
403 if (pcnet_read_csr (dev, 0) & 0x0100)
404 break;
405 udelay (10);
406 }
407 if (i <= 0) {
408 printf ("%s: TIMEOUT: controller init failed\n", dev->name);
409 pcnet_reset (dev);
410 return -1;
411 }
412
413 /*
414 * Finally start network controller operation.
415 */
416 pcnet_write_csr (dev, 0, 0x0002);
417
418 return 0;
wdenkc6097192002-11-03 00:24:07 +0000419}
420
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200421static int pcnet_send (struct eth_device *dev, volatile void *packet,
422 int pkt_len)
wdenkc6097192002-11-03 00:24:07 +0000423{
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200424 int i, status;
425 struct pcnet_tx_head *entry = &lp->tx_ring[lp->cur_tx];
wdenkc6097192002-11-03 00:24:07 +0000426
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200427 PCNET_DEBUG2 ("Tx%d: %d bytes from 0x%p ", lp->cur_tx, pkt_len,
428 packet);
wdenkc6097192002-11-03 00:24:07 +0000429
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200430 /* Wait for completion by testing the OWN bit */
431 for (i = 1000; i > 0; i--) {
432 status = le16_to_cpu (entry->status);
433 if ((status & 0x8000) == 0)
434 break;
435 udelay (100);
436 PCNET_DEBUG2 (".");
437 }
438 if (i <= 0) {
439 printf ("%s: TIMEOUT: Tx%d failed (status = 0x%x)\n",
440 dev->name, lp->cur_tx, status);
441 pkt_len = 0;
442 goto failure;
443 }
wdenkc6097192002-11-03 00:24:07 +0000444
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200445 /*
446 * Setup Tx ring. Caution: the write order is important here,
447 * set the status with the "ownership" bits last.
448 */
449 status = 0x8300;
450 entry->length = le16_to_cpu (-pkt_len);
451 entry->misc = 0x00000000;
452 entry->base = PCI_TO_MEM_LE (dev, packet);
453 entry->status = le16_to_cpu (status);
454
455 /* Trigger an immediate send poll. */
456 pcnet_write_csr (dev, 0, 0x0008);
457
458 failure:
459 if (++lp->cur_tx >= TX_RING_SIZE)
460 lp->cur_tx = 0;
461
462 PCNET_DEBUG2 ("done\n");
463 return pkt_len;
wdenkc6097192002-11-03 00:24:07 +0000464}
465
Wolfgang Denk11ea26f2008-04-24 23:44:26 +0200466static int pcnet_recv (struct eth_device *dev)
467{
468 struct pcnet_rx_head *entry;
469 int pkt_len = 0;
470 u16 status;
471
472 while (1) {
473 entry = &lp->rx_ring[lp->cur_rx];
474 /*
475 * If we own the next entry, it's a new packet. Send it up.
476 */
477 if (((status = le16_to_cpu (entry->status)) & 0x8000) != 0) {
478 break;
479 }
480 status >>= 8;
481
482 if (status != 0x03) { /* There was an error. */
483
484 printf ("%s: Rx%d", dev->name, lp->cur_rx);
485 PCNET_DEBUG1 (" (status=0x%x)", status);
486 if (status & 0x20)
487 printf (" Frame");
488 if (status & 0x10)
489 printf (" Overflow");
490 if (status & 0x08)
491 printf (" CRC");
492 if (status & 0x04)
493 printf (" Fifo");
494 printf (" Error\n");
495 entry->status &= le16_to_cpu (0x03ff);
496
497 } else {
498
499 pkt_len =
500 (le32_to_cpu (entry->msg_length) & 0xfff) - 4;
501 if (pkt_len < 60) {
502 printf ("%s: Rx%d: invalid packet length %d\n", dev->name, lp->cur_rx, pkt_len);
503 } else {
504 NetReceive (lp->rx_buf[lp->cur_rx], pkt_len);
505 PCNET_DEBUG2 ("Rx%d: %d bytes from 0x%p\n",
506 lp->cur_rx, pkt_len,
507 lp->rx_buf[lp->cur_rx]);
508 }
509 }
510 entry->status |= cpu_to_le16 (0x8000);
511
512 if (++lp->cur_rx >= RX_RING_SIZE)
513 lp->cur_rx = 0;
514 }
515 return pkt_len;
516}
517
518static void pcnet_halt (struct eth_device *dev)
519{
520 int i;
521
522 PCNET_DEBUG1 ("%s: pcnet_halt...\n", dev->name);
523
524 /* Reset the PCnet controller */
525 pcnet_reset (dev);
526
527 /* Wait for Stop bit */
528 for (i = 1000; i > 0; i--) {
529 if (pcnet_read_csr (dev, 0) & 0x4)
530 break;
531 udelay (10);
532 }
533 if (i <= 0) {
534 printf ("%s: TIMEOUT: controller reset failed\n", dev->name);
535 }
536}