blob: 9ec7b833453749241b2de66d60a6fb0788025ed9 [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 Denk39158312008-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
wdenkf2140d52004-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
wdenkf2140d52004-07-01 16:30:44 +000039#define PCNET_DEBUG2(fmt,args...) printf (fmt ,##args)
wdenkc6097192002-11-03 00:24:07 +000040#else
wdenkf2140d52004-07-01 16:30:44 +000041#define PCNET_DEBUG2(fmt,args...)
wdenkc6097192002-11-03 00:24:07 +000042#endif
43#else
wdenkf2140d52004-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
Jon Loeliger82ecaad2007-07-09 17:39:42 -050048#if defined(CONFIG_CMD_NET) \
Jon Loeligerd8c86302007-06-11 19:02:10 -050049 && defined(CONFIG_NET_MULTI) && defined(CONFIG_PCNET)
wdenkc6097192002-11-03 00:24:07 +000050
51#if !defined(CONF_PCNET_79C973) && defined(CONF_PCNET_79C975)
52#error "Macro for PCnet chip version is not defined!"
53#endif
54
55/*
56 * Set the number of Tx and Rx buffers, using Log_2(# buffers).
57 * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
58 * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
59 */
60#define PCNET_LOG_TX_BUFFERS 0
61#define PCNET_LOG_RX_BUFFERS 2
62
63#define TX_RING_SIZE (1 << (PCNET_LOG_TX_BUFFERS))
64#define TX_RING_LEN_BITS ((PCNET_LOG_TX_BUFFERS) << 12)
65
66#define RX_RING_SIZE (1 << (PCNET_LOG_RX_BUFFERS))
67#define RX_RING_LEN_BITS ((PCNET_LOG_RX_BUFFERS) << 4)
68
69#define PKT_BUF_SZ 1544
70
71/* The PCNET Rx and Tx ring descriptors. */
72struct pcnet_rx_head {
Wolfgang Denk39158312008-04-24 23:44:26 +020073 u32 base;
74 s16 buf_length;
75 s16 status;
76 u32 msg_length;
77 u32 reserved;
wdenkc6097192002-11-03 00:24:07 +000078};
79
80struct pcnet_tx_head {
Wolfgang Denk39158312008-04-24 23:44:26 +020081 u32 base;
82 s16 length;
83 s16 status;
84 u32 misc;
85 u32 reserved;
wdenkc6097192002-11-03 00:24:07 +000086};
87
88/* The PCNET 32-Bit initialization block, described in databook. */
89struct pcnet_init_block {
Wolfgang Denk39158312008-04-24 23:44:26 +020090 u16 mode;
91 u16 tlen_rlen;
92 u8 phys_addr[6];
93 u16 reserved;
94 u32 filter[2];
95 /* Receive and transmit ring base, along with extra bits. */
96 u32 rx_ring;
97 u32 tx_ring;
98 u32 reserved2;
wdenkc6097192002-11-03 00:24:07 +000099};
100
101typedef struct pcnet_priv {
Wolfgang Denk39158312008-04-24 23:44:26 +0200102 struct pcnet_rx_head rx_ring[RX_RING_SIZE];
103 struct pcnet_tx_head tx_ring[TX_RING_SIZE];
104 struct pcnet_init_block init_block;
105 /* Receive Buffer space */
106 unsigned char rx_buf[RX_RING_SIZE][PKT_BUF_SZ + 4];
107 int cur_rx;
108 int cur_tx;
wdenkc6097192002-11-03 00:24:07 +0000109} pcnet_priv_t;
110
111static pcnet_priv_t *lp;
112
113/* Offsets from base I/O address for WIO mode */
114#define PCNET_RDP 0x10
115#define PCNET_RAP 0x12
116#define PCNET_RESET 0x14
117#define PCNET_BDP 0x16
118
119static u16 pcnet_read_csr (struct eth_device *dev, int index)
120{
Wolfgang Denk39158312008-04-24 23:44:26 +0200121 outw (index, dev->iobase + PCNET_RAP);
122 return inw (dev->iobase + PCNET_RDP);
wdenkc6097192002-11-03 00:24:07 +0000123}
124
125static void pcnet_write_csr (struct eth_device *dev, int index, u16 val)
126{
Wolfgang Denk39158312008-04-24 23:44:26 +0200127 outw (index, dev->iobase + PCNET_RAP);
128 outw (val, dev->iobase + PCNET_RDP);
wdenkc6097192002-11-03 00:24:07 +0000129}
130
131static u16 pcnet_read_bcr (struct eth_device *dev, int index)
132{
Wolfgang Denk39158312008-04-24 23:44:26 +0200133 outw (index, dev->iobase + PCNET_RAP);
134 return inw (dev->iobase + PCNET_BDP);
wdenkc6097192002-11-03 00:24:07 +0000135}
136
137static void pcnet_write_bcr (struct eth_device *dev, int index, u16 val)
138{
Wolfgang Denk39158312008-04-24 23:44:26 +0200139 outw (index, dev->iobase + PCNET_RAP);
140 outw (val, dev->iobase + PCNET_BDP);
wdenkc6097192002-11-03 00:24:07 +0000141}
142
143static void pcnet_reset (struct eth_device *dev)
144{
Wolfgang Denk39158312008-04-24 23:44:26 +0200145 inw (dev->iobase + PCNET_RESET);
wdenkc6097192002-11-03 00:24:07 +0000146}
147
148static int pcnet_check (struct eth_device *dev)
149{
Wolfgang Denk39158312008-04-24 23:44:26 +0200150 outw (88, dev->iobase + PCNET_RAP);
151 return (inw (dev->iobase + PCNET_RAP) == 88);
wdenkc6097192002-11-03 00:24:07 +0000152}
153
Wolfgang Denk39158312008-04-24 23:44:26 +0200154static int pcnet_init (struct eth_device *dev, bd_t * bis);
155static int pcnet_send (struct eth_device *dev, volatile void *packet,
156 int length);
157static int pcnet_recv (struct eth_device *dev);
158static void pcnet_halt (struct eth_device *dev);
159static int pcnet_probe (struct eth_device *dev, bd_t * bis, int dev_num);
wdenkc6097192002-11-03 00:24:07 +0000160
161#define PCI_TO_MEM(d,a) pci_phys_to_mem((pci_dev_t)d->priv, (u_long)(a))
162#define PCI_TO_MEM_LE(d,a) (u32)(cpu_to_le32(PCI_TO_MEM(d,a)))
163
164static struct pci_device_id supported[] = {
Wolfgang Denk39158312008-04-24 23:44:26 +0200165 {PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE},
166 {}
wdenkc6097192002-11-03 00:24:07 +0000167};
168
169
Wolfgang Denk39158312008-04-24 23:44:26 +0200170int pcnet_initialize (bd_t * bis)
wdenkc6097192002-11-03 00:24:07 +0000171{
Wolfgang Denk39158312008-04-24 23:44:26 +0200172 pci_dev_t devbusfn;
173 struct eth_device *dev;
174 u16 command, status;
175 int dev_nr = 0;
wdenkc6097192002-11-03 00:24:07 +0000176
Wolfgang Denk39158312008-04-24 23:44:26 +0200177 PCNET_DEBUG1 ("\npcnet_initialize...\n");
wdenkc6097192002-11-03 00:24:07 +0000178
Wolfgang Denk39158312008-04-24 23:44:26 +0200179 for (dev_nr = 0;; dev_nr++) {
wdenkc6097192002-11-03 00:24:07 +0000180
Wolfgang Denk39158312008-04-24 23:44:26 +0200181 /*
182 * Find the PCnet PCI device(s).
183 */
184 if ((devbusfn = pci_find_devices (supported, dev_nr)) < 0) {
185 break;
186 }
wdenkc6097192002-11-03 00:24:07 +0000187
Wolfgang Denk39158312008-04-24 23:44:26 +0200188 /*
189 * Allocate and pre-fill the device structure.
190 */
191 dev = (struct eth_device *) malloc (sizeof *dev);
192 dev->priv = (void *) devbusfn;
193 sprintf (dev->name, "pcnet#%d", dev_nr);
wdenkc6097192002-11-03 00:24:07 +0000194
Wolfgang Denk39158312008-04-24 23:44:26 +0200195 /*
196 * Setup the PCI device.
197 */
198 pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_0,
199 (unsigned int *) &dev->iobase);
200 dev->iobase &= ~0xf;
wdenkc6097192002-11-03 00:24:07 +0000201
Wolfgang Denk39158312008-04-24 23:44:26 +0200202 PCNET_DEBUG1 ("%s: devbusfn=0x%x iobase=0x%x: ",
203 dev->name, devbusfn, dev->iobase);
wdenkc6097192002-11-03 00:24:07 +0000204
Wolfgang Denk39158312008-04-24 23:44:26 +0200205 command = PCI_COMMAND_IO | PCI_COMMAND_MASTER;
206 pci_write_config_word (devbusfn, PCI_COMMAND, command);
207 pci_read_config_word (devbusfn, PCI_COMMAND, &status);
208 if ((status & command) != command) {
209 printf ("%s: Couldn't enable IO access or Bus Mastering\n", dev->name);
210 free (dev);
211 continue;
212 }
wdenkc6097192002-11-03 00:24:07 +0000213
Wolfgang Denk39158312008-04-24 23:44:26 +0200214 pci_write_config_byte (devbusfn, PCI_LATENCY_TIMER, 0x40);
wdenkc6097192002-11-03 00:24:07 +0000215
Wolfgang Denk39158312008-04-24 23:44:26 +0200216 /*
217 * Probe the PCnet chip.
218 */
219 if (pcnet_probe (dev, bis, dev_nr) < 0) {
220 free (dev);
221 continue;
222 }
wdenkc6097192002-11-03 00:24:07 +0000223
Wolfgang Denk39158312008-04-24 23:44:26 +0200224 /*
225 * Setup device structure and register the driver.
226 */
227 dev->init = pcnet_init;
228 dev->halt = pcnet_halt;
229 dev->send = pcnet_send;
230 dev->recv = pcnet_recv;
wdenkc6097192002-11-03 00:24:07 +0000231
Wolfgang Denk39158312008-04-24 23:44:26 +0200232 eth_register (dev);
233 }
wdenkc6097192002-11-03 00:24:07 +0000234
Wolfgang Denk39158312008-04-24 23:44:26 +0200235 udelay (10 * 1000);
wdenkc6097192002-11-03 00:24:07 +0000236
Wolfgang Denk39158312008-04-24 23:44:26 +0200237 return dev_nr;
wdenkc6097192002-11-03 00:24:07 +0000238}
239
Wolfgang Denk39158312008-04-24 23:44:26 +0200240static int pcnet_probe (struct eth_device *dev, bd_t * bis, int dev_nr)
wdenkc6097192002-11-03 00:24:07 +0000241{
Wolfgang Denk39158312008-04-24 23:44:26 +0200242 int chip_version;
243 char *chipname;
244
wdenkc6097192002-11-03 00:24:07 +0000245#ifdef PCNET_HAS_PROM
Wolfgang Denk39158312008-04-24 23:44:26 +0200246 int i;
wdenkc6097192002-11-03 00:24:07 +0000247#endif
248
Wolfgang Denk39158312008-04-24 23:44:26 +0200249 /* Reset the PCnet controller */
250 pcnet_reset (dev);
wdenkc6097192002-11-03 00:24:07 +0000251
Wolfgang Denk39158312008-04-24 23:44:26 +0200252 /* Check if register access is working */
253 if (pcnet_read_csr (dev, 0) != 4 || !pcnet_check (dev)) {
254 printf ("%s: CSR register access check failed\n", dev->name);
255 return -1;
256 }
wdenkc6097192002-11-03 00:24:07 +0000257
Wolfgang Denk39158312008-04-24 23:44:26 +0200258 /* Identify the chip */
259 chip_version =
260 pcnet_read_csr (dev, 88) | (pcnet_read_csr (dev, 89) << 16);
261 if ((chip_version & 0xfff) != 0x003)
262 return -1;
263 chip_version = (chip_version >> 12) & 0xffff;
264 switch (chip_version) {
265 case 0x2621:
266 chipname = "PCnet/PCI II 79C970A"; /* PCI */
267 break;
wdenkc6097192002-11-03 00:24:07 +0000268#ifdef CONFIG_PCNET_79C973
Wolfgang Denk39158312008-04-24 23:44:26 +0200269 case 0x2625:
270 chipname = "PCnet/FAST III 79C973"; /* PCI */
271 break;
wdenkc6097192002-11-03 00:24:07 +0000272#endif
273#ifdef CONFIG_PCNET_79C975
Wolfgang Denk39158312008-04-24 23:44:26 +0200274 case 0x2627:
275 chipname = "PCnet/FAST III 79C975"; /* PCI */
276 break;
wdenkc6097192002-11-03 00:24:07 +0000277#endif
Wolfgang Denk39158312008-04-24 23:44:26 +0200278 default:
279 printf ("%s: PCnet version %#x not supported\n",
280 dev->name, chip_version);
281 return -1;
282 }
wdenkc6097192002-11-03 00:24:07 +0000283
Wolfgang Denk39158312008-04-24 23:44:26 +0200284 PCNET_DEBUG1 ("AMD %s\n", chipname);
wdenkc6097192002-11-03 00:24:07 +0000285
286#ifdef PCNET_HAS_PROM
Wolfgang Denk39158312008-04-24 23:44:26 +0200287 /*
288 * In most chips, after a chip reset, the ethernet address is read from
289 * the station address PROM at the base address and programmed into the
290 * "Physical Address Registers" CSR12-14.
291 */
292 for (i = 0; i < 3; i++) {
293 unsigned int val;
294
295 val = pcnet_read_csr (dev, i + 12) & 0x0ffff;
296 /* There may be endianness issues here. */
297 dev->enetaddr[2 * i] = val & 0x0ff;
298 dev->enetaddr[2 * i + 1] = (val >> 8) & 0x0ff;
299 }
wdenkc6097192002-11-03 00:24:07 +0000300#endif /* PCNET_HAS_PROM */
301
Wolfgang Denk39158312008-04-24 23:44:26 +0200302 return 0;
wdenkc6097192002-11-03 00:24:07 +0000303}
304
Wolfgang Denk39158312008-04-24 23:44:26 +0200305static int pcnet_init (struct eth_device *dev, bd_t * bis)
wdenkc6097192002-11-03 00:24:07 +0000306{
Wolfgang Denk39158312008-04-24 23:44:26 +0200307 int i, val;
308 u32 addr;
wdenkc6097192002-11-03 00:24:07 +0000309
Wolfgang Denk39158312008-04-24 23:44:26 +0200310 PCNET_DEBUG1 ("%s: pcnet_init...\n", dev->name);
wdenkc6097192002-11-03 00:24:07 +0000311
Wolfgang Denk39158312008-04-24 23:44:26 +0200312 /* Switch pcnet to 32bit mode */
313 pcnet_write_bcr (dev, 20, 2);
wdenkc6097192002-11-03 00:24:07 +0000314
315#ifdef CONFIG_PN62
Wolfgang Denk39158312008-04-24 23:44:26 +0200316 /* Setup LED registers */
317 val = pcnet_read_bcr (dev, 2) | 0x1000;
318 pcnet_write_bcr (dev, 2, val); /* enable LEDPE */
319 pcnet_write_bcr (dev, 4, 0x5080); /* 100MBit */
320 pcnet_write_bcr (dev, 5, 0x40c0); /* LNKSE */
321 pcnet_write_bcr (dev, 6, 0x4090); /* TX Activity */
322 pcnet_write_bcr (dev, 7, 0x4084); /* RX Activity */
wdenkc6097192002-11-03 00:24:07 +0000323#endif
324
Wolfgang Denk39158312008-04-24 23:44:26 +0200325 /* Set/reset autoselect bit */
326 val = pcnet_read_bcr (dev, 2) & ~2;
327 val |= 2;
328 pcnet_write_bcr (dev, 2, val);
wdenkc6097192002-11-03 00:24:07 +0000329
Wolfgang Denk39158312008-04-24 23:44:26 +0200330 /* Enable auto negotiate, setup, disable fd */
331 val = pcnet_read_bcr (dev, 32) & ~0x98;
332 val |= 0x20;
333 pcnet_write_bcr (dev, 32, val);
wdenkc6097192002-11-03 00:24:07 +0000334
Wolfgang Denk39158312008-04-24 23:44:26 +0200335 /*
336 * We only maintain one structure because the drivers will never
337 * be used concurrently. In 32bit mode the RX and TX ring entries
338 * must be aligned on 16-byte boundaries.
339 */
340 if (lp == NULL) {
341 addr = (u32) malloc (sizeof (pcnet_priv_t) + 0x10);
342 addr = (addr + 0xf) & ~0xf;
343 lp = (pcnet_priv_t *) addr;
344 }
wdenkc6097192002-11-03 00:24:07 +0000345
Wolfgang Denk39158312008-04-24 23:44:26 +0200346 lp->init_block.mode = cpu_to_le16 (0x0000);
347 lp->init_block.filter[0] = 0x00000000;
348 lp->init_block.filter[1] = 0x00000000;
wdenkc6097192002-11-03 00:24:07 +0000349
Wolfgang Denk39158312008-04-24 23:44:26 +0200350 /*
351 * Initialize the Rx ring.
352 */
353 lp->cur_rx = 0;
354 for (i = 0; i < RX_RING_SIZE; i++) {
355 lp->rx_ring[i].base = PCI_TO_MEM_LE (dev, lp->rx_buf[i]);
356 lp->rx_ring[i].buf_length = cpu_to_le16 (-PKT_BUF_SZ);
357 lp->rx_ring[i].status = cpu_to_le16 (0x8000);
358 PCNET_DEBUG1
359 ("Rx%d: base=0x%x buf_length=0x%hx status=0x%hx\n", i,
360 lp->rx_ring[i].base, lp->rx_ring[i].buf_length,
361 lp->rx_ring[i].status);
362 }
wdenkc6097192002-11-03 00:24:07 +0000363
Wolfgang Denk39158312008-04-24 23:44:26 +0200364 /*
365 * Initialize the Tx ring. The Tx buffer address is filled in as
366 * needed, but we do need to clear the upper ownership bit.
367 */
368 lp->cur_tx = 0;
369 for (i = 0; i < TX_RING_SIZE; i++) {
370 lp->tx_ring[i].base = 0;
371 lp->tx_ring[i].status = 0;
372 }
wdenkc6097192002-11-03 00:24:07 +0000373
Wolfgang Denk39158312008-04-24 23:44:26 +0200374 /*
375 * Setup Init Block.
376 */
377 PCNET_DEBUG1 ("Init block at 0x%p: MAC", &lp->init_block);
wdenkc6097192002-11-03 00:24:07 +0000378
Wolfgang Denk39158312008-04-24 23:44:26 +0200379 for (i = 0; i < 6; i++) {
380 lp->init_block.phys_addr[i] = dev->enetaddr[i];
381 PCNET_DEBUG1 (" %02x", lp->init_block.phys_addr[i]);
382 }
wdenkc6097192002-11-03 00:24:07 +0000383
Wolfgang Denk39158312008-04-24 23:44:26 +0200384 lp->init_block.tlen_rlen = cpu_to_le16 (TX_RING_LEN_BITS |
385 RX_RING_LEN_BITS);
386 lp->init_block.rx_ring = PCI_TO_MEM_LE (dev, lp->rx_ring);
387 lp->init_block.tx_ring = PCI_TO_MEM_LE (dev, lp->tx_ring);
wdenkc6097192002-11-03 00:24:07 +0000388
Wolfgang Denk39158312008-04-24 23:44:26 +0200389 PCNET_DEBUG1 ("\ntlen_rlen=0x%x rx_ring=0x%x tx_ring=0x%x\n",
390 lp->init_block.tlen_rlen,
391 lp->init_block.rx_ring, lp->init_block.tx_ring);
wdenkc6097192002-11-03 00:24:07 +0000392
Wolfgang Denk39158312008-04-24 23:44:26 +0200393 /*
394 * Tell the controller where the Init Block is located.
395 */
396 addr = PCI_TO_MEM (dev, &lp->init_block);
397 pcnet_write_csr (dev, 1, addr & 0xffff);
398 pcnet_write_csr (dev, 2, (addr >> 16) & 0xffff);
wdenkc6097192002-11-03 00:24:07 +0000399
Wolfgang Denk39158312008-04-24 23:44:26 +0200400 pcnet_write_csr (dev, 4, 0x0915);
401 pcnet_write_csr (dev, 0, 0x0001); /* start */
wdenkc6097192002-11-03 00:24:07 +0000402
Wolfgang Denk39158312008-04-24 23:44:26 +0200403 /* Wait for Init Done bit */
404 for (i = 10000; i > 0; i--) {
405 if (pcnet_read_csr (dev, 0) & 0x0100)
406 break;
407 udelay (10);
408 }
409 if (i <= 0) {
410 printf ("%s: TIMEOUT: controller init failed\n", dev->name);
411 pcnet_reset (dev);
412 return -1;
413 }
wdenkc6097192002-11-03 00:24:07 +0000414
Wolfgang Denk39158312008-04-24 23:44:26 +0200415 /*
416 * Finally start network controller operation.
417 */
418 pcnet_write_csr (dev, 0, 0x0002);
wdenkc6097192002-11-03 00:24:07 +0000419
Wolfgang Denk39158312008-04-24 23:44:26 +0200420 return 0;
wdenkc6097192002-11-03 00:24:07 +0000421}
422
Wolfgang Denk39158312008-04-24 23:44:26 +0200423static int pcnet_send (struct eth_device *dev, volatile void *packet,
424 int pkt_len)
wdenkc6097192002-11-03 00:24:07 +0000425{
Wolfgang Denk39158312008-04-24 23:44:26 +0200426 int i, status;
427 struct pcnet_tx_head *entry = &lp->tx_ring[lp->cur_tx];
wdenkc6097192002-11-03 00:24:07 +0000428
Wolfgang Denk39158312008-04-24 23:44:26 +0200429 PCNET_DEBUG2 ("Tx%d: %d bytes from 0x%p ", lp->cur_tx, pkt_len,
430 packet);
wdenkc6097192002-11-03 00:24:07 +0000431
Wolfgang Denk39158312008-04-24 23:44:26 +0200432 /* Wait for completion by testing the OWN bit */
433 for (i = 1000; i > 0; i--) {
434 status = le16_to_cpu (entry->status);
435 if ((status & 0x8000) == 0)
436 break;
437 udelay (100);
438 PCNET_DEBUG2 (".");
439 }
440 if (i <= 0) {
441 printf ("%s: TIMEOUT: Tx%d failed (status = 0x%x)\n",
442 dev->name, lp->cur_tx, status);
443 pkt_len = 0;
444 goto failure;
445 }
wdenkc6097192002-11-03 00:24:07 +0000446
Wolfgang Denk39158312008-04-24 23:44:26 +0200447 /*
448 * Setup Tx ring. Caution: the write order is important here,
449 * set the status with the "ownership" bits last.
450 */
451 status = 0x8300;
452 entry->length = le16_to_cpu (-pkt_len);
453 entry->misc = 0x00000000;
454 entry->base = PCI_TO_MEM_LE (dev, packet);
455 entry->status = le16_to_cpu (status);
wdenkc6097192002-11-03 00:24:07 +0000456
Wolfgang Denk39158312008-04-24 23:44:26 +0200457 /* Trigger an immediate send poll. */
458 pcnet_write_csr (dev, 0, 0x0008);
wdenkc6097192002-11-03 00:24:07 +0000459
Wolfgang Denk39158312008-04-24 23:44:26 +0200460 failure:
461 if (++lp->cur_tx >= TX_RING_SIZE)
462 lp->cur_tx = 0;
wdenkc6097192002-11-03 00:24:07 +0000463
Wolfgang Denk39158312008-04-24 23:44:26 +0200464 PCNET_DEBUG2 ("done\n");
465 return pkt_len;
wdenkc6097192002-11-03 00:24:07 +0000466}
467
Wolfgang Denk39158312008-04-24 23:44:26 +0200468static int pcnet_recv (struct eth_device *dev)
wdenkc6097192002-11-03 00:24:07 +0000469{
Wolfgang Denk39158312008-04-24 23:44:26 +0200470 struct pcnet_rx_head *entry;
471 int pkt_len = 0;
472 u16 status;
wdenkc6097192002-11-03 00:24:07 +0000473
Wolfgang Denk39158312008-04-24 23:44:26 +0200474 while (1) {
475 entry = &lp->rx_ring[lp->cur_rx];
476 /*
477 * If we own the next entry, it's a new packet. Send it up.
478 */
479 if (((status = le16_to_cpu (entry->status)) & 0x8000) != 0) {
480 break;
481 }
482 status >>= 8;
wdenkc6097192002-11-03 00:24:07 +0000483
Wolfgang Denk39158312008-04-24 23:44:26 +0200484 if (status != 0x03) { /* There was an error. */
wdenkc6097192002-11-03 00:24:07 +0000485
Wolfgang Denk39158312008-04-24 23:44:26 +0200486 printf ("%s: Rx%d", dev->name, lp->cur_rx);
487 PCNET_DEBUG1 (" (status=0x%x)", status);
488 if (status & 0x20)
489 printf (" Frame");
490 if (status & 0x10)
491 printf (" Overflow");
492 if (status & 0x08)
493 printf (" CRC");
494 if (status & 0x04)
495 printf (" Fifo");
496 printf (" Error\n");
497 entry->status &= le16_to_cpu (0x03ff);
wdenkc6097192002-11-03 00:24:07 +0000498
Wolfgang Denk39158312008-04-24 23:44:26 +0200499 } else {
wdenkc6097192002-11-03 00:24:07 +0000500
Wolfgang Denk39158312008-04-24 23:44:26 +0200501 pkt_len =
502 (le32_to_cpu (entry->msg_length) & 0xfff) - 4;
503 if (pkt_len < 60) {
504 printf ("%s: Rx%d: invalid packet length %d\n", dev->name, lp->cur_rx, pkt_len);
505 } else {
506 NetReceive (lp->rx_buf[lp->cur_rx], pkt_len);
507 PCNET_DEBUG2 ("Rx%d: %d bytes from 0x%p\n",
508 lp->cur_rx, pkt_len,
509 lp->rx_buf[lp->cur_rx]);
510 }
511 }
512 entry->status |= cpu_to_le16 (0x8000);
wdenkc6097192002-11-03 00:24:07 +0000513
Wolfgang Denk39158312008-04-24 23:44:26 +0200514 if (++lp->cur_rx >= RX_RING_SIZE)
515 lp->cur_rx = 0;
516 }
517 return pkt_len;
wdenkc6097192002-11-03 00:24:07 +0000518}
519
Wolfgang Denk39158312008-04-24 23:44:26 +0200520static void pcnet_halt (struct eth_device *dev)
wdenkc6097192002-11-03 00:24:07 +0000521{
Wolfgang Denk39158312008-04-24 23:44:26 +0200522 int i;
wdenkc6097192002-11-03 00:24:07 +0000523
Wolfgang Denk39158312008-04-24 23:44:26 +0200524 PCNET_DEBUG1 ("%s: pcnet_halt...\n", dev->name);
wdenkc6097192002-11-03 00:24:07 +0000525
Wolfgang Denk39158312008-04-24 23:44:26 +0200526 /* Reset the PCnet controller */
527 pcnet_reset (dev);
wdenkc6097192002-11-03 00:24:07 +0000528
Wolfgang Denk39158312008-04-24 23:44:26 +0200529 /* Wait for Stop bit */
530 for (i = 1000; i > 0; i--) {
531 if (pcnet_read_csr (dev, 0) & 0x4)
532 break;
533 udelay (10);
534 }
535 if (i <= 0) {
536 printf ("%s: TIMEOUT: controller reset failed\n", dev->name);
537 }
wdenkc6097192002-11-03 00:24:07 +0000538}
wdenkc6097192002-11-03 00:24:07 +0000539#endif