a2065.c 19.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/*
 * Amiga Linux/68k A2065 Ethernet Driver
 *
 * (C) Copyright 1995-2003 by Geert Uytterhoeven <geert@linux-m68k.org>
 *
 * Fixes and tips by:
 *	- Janos Farkas (CHEXUM@sparta.banki.hu)
 *	- Jes Degn Soerensen (jds@kom.auc.dk)
 *	- Matt Domsch (Matt_Domsch@dell.com)
 *
 * ----------------------------------------------------------------------------
 *
 * This program is based on
 *
 *	ariadne.?:	Amiga Linux/68k Ariadne Ethernet Driver
 *			(C) Copyright 1995 by Geert Uytterhoeven,
 *                                            Peter De Schrijver
 *
 *	lance.c:	An AMD LANCE ethernet driver for linux.
 *			Written 1993-94 by Donald Becker.
 *
 *	Am79C960:	PCnet(tm)-ISA Single-Chip Ethernet Controller
 *			Advanced Micro Devices
 *			Publication #16907, Rev. B, Amendment/0, May 1994
 *
 * ----------------------------------------------------------------------------
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of the Linux
 * distribution for more details.
 *
 * ----------------------------------------------------------------------------
 *
 * The A2065 is a Zorro-II board made by Commodore/Ameristar. It contains:
 *
 *	- an Am7990 Local Area Network Controller for Ethernet (LANCE) with
 *	  both 10BASE-2 (thin coax) and AUI (DB-15) connectors
 */

40 41 42 43 44
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

/*#define DEBUG*/
/*#define TEST_HITS*/

L
Linus Torvalds 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
#include <linux/errno.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/module.h>
#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/skbuff.h>
#include <linux/string.h>
#include <linux/init.h>
#include <linux/crc32.h>
#include <linux/zorro.h>
#include <linux/bitops.h>

60
#include <asm/byteorder.h>
L
Linus Torvalds 已提交
61 62 63 64 65 66
#include <asm/irq.h>
#include <asm/amigaints.h>
#include <asm/amigahw.h>

#include "a2065.h"

67
/* Transmit/Receive Ring Definitions */
L
Linus Torvalds 已提交
68 69 70 71

#define LANCE_LOG_TX_BUFFERS	(2)
#define LANCE_LOG_RX_BUFFERS	(4)

72 73
#define TX_RING_SIZE		(1 << LANCE_LOG_TX_BUFFERS)
#define RX_RING_SIZE		(1 << LANCE_LOG_RX_BUFFERS)
L
Linus Torvalds 已提交
74

75 76
#define TX_RING_MOD_MASK	(TX_RING_SIZE - 1)
#define RX_RING_MOD_MASK	(RX_RING_SIZE - 1)
L
Linus Torvalds 已提交
77 78 79 80 81

#define PKT_BUF_SIZE		(1544)
#define RX_BUFF_SIZE            PKT_BUF_SIZE
#define TX_BUFF_SIZE            PKT_BUF_SIZE

82
/* Layout of the Lance's RAM Buffer */
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90 91 92 93

struct lance_init_block {
	unsigned short mode;		/* Pre-set mode (reg. 15) */
	unsigned char phys_addr[6];     /* Physical ethernet address */
	unsigned filter[2];		/* Multicast filter. */

	/* Receive and transmit ring base, along with extra bits. */
	unsigned short rx_ptr;		/* receive descriptor addr */
	unsigned short rx_len;		/* receive len and high addr */
	unsigned short tx_ptr;		/* transmit descriptor addr */
	unsigned short tx_len;		/* transmit len and high addr */
94

L
Linus Torvalds 已提交
95 96 97 98
	/* The Tx and Rx ring entries must aligned on 8-byte boundaries. */
	struct lance_rx_desc brx_ring[RX_RING_SIZE];
	struct lance_tx_desc btx_ring[TX_RING_SIZE];

99 100
	char rx_buf[RX_RING_SIZE][RX_BUFF_SIZE];
	char tx_buf[TX_RING_SIZE][TX_BUFF_SIZE];
L
Linus Torvalds 已提交
101 102
};

103
/* Private Device Data */
L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112

struct lance_private {
	char *name;
	volatile struct lance_regs *ll;
	volatile struct lance_init_block *init_block;	    /* Hosts view */
	volatile struct lance_init_block *lance_init_block; /* Lance view */

	int rx_new, tx_new;
	int rx_old, tx_old;
113

L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121
	int lance_log_rx_bufs, lance_log_tx_bufs;
	int rx_ring_mod_mask, tx_ring_mod_mask;

	int tpe;		      /* cable-selection is TPE */
	int auto_select;	      /* cable-selection by carrier */
	unsigned short busmaster_regval;

	struct timer_list         multicast_timer;
122
	struct net_device	  *dev;
L
Linus Torvalds 已提交
123 124 125 126 127
};

#define LANCE_ADDR(x) ((int)(x) & ~0xff000000)

/* Load the CSR registers */
128
static void load_csrs(struct lance_private *lp)
L
Linus Torvalds 已提交
129 130 131
{
	volatile struct lance_regs *ll = lp->ll;
	volatile struct lance_init_block *aib = lp->lance_init_block;
132
	int leptr = LANCE_ADDR(aib);
L
Linus Torvalds 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145

	ll->rap = LE_CSR1;
	ll->rdp = (leptr & 0xFFFF);
	ll->rap = LE_CSR2;
	ll->rdp = leptr >> 16;
	ll->rap = LE_CSR3;
	ll->rdp = lp->busmaster_regval;

	/* Point back to csr0 */
	ll->rap = LE_CSR0;
}

/* Setup the Lance Rx and Tx rings */
146
static void lance_init_ring(struct net_device *dev)
L
Linus Torvalds 已提交
147 148 149
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_init_block *ib = lp->init_block;
150 151
	volatile struct lance_init_block *aib = lp->lance_init_block;
					/* for LANCE_ADDR computations */
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164
	int leptr;
	int i;

	/* Lock out other processes while setting up hardware */
	netif_stop_queue(dev);
	lp->rx_new = lp->tx_new = 0;
	lp->rx_old = lp->tx_old = 0;

	ib->mode = 0;

	/* Copy the ethernet address to the lance init block
	 * Note that on the sparc you need to swap the ethernet address.
	 */
165 166 167 168 169 170
	ib->phys_addr[0] = dev->dev_addr[1];
	ib->phys_addr[1] = dev->dev_addr[0];
	ib->phys_addr[2] = dev->dev_addr[3];
	ib->phys_addr[3] = dev->dev_addr[2];
	ib->phys_addr[4] = dev->dev_addr[5];
	ib->phys_addr[5] = dev->dev_addr[4];
171

L
Linus Torvalds 已提交
172
	/* Setup the Tx ring entries */
173 174
	netdev_dbg(dev, "TX rings:\n");
	for (i = 0; i <= 1 << lp->lance_log_tx_bufs; i++) {
L
Linus Torvalds 已提交
175
		leptr = LANCE_ADDR(&aib->tx_buf[i][0]);
176 177 178 179 180 181 182
		ib->btx_ring[i].tmd0      = leptr;
		ib->btx_ring[i].tmd1_hadr = leptr >> 16;
		ib->btx_ring[i].tmd1_bits = 0;
		ib->btx_ring[i].length    = 0xf000; /* The ones required by tmd2 */
		ib->btx_ring[i].misc      = 0;
		if (i < 3)
			netdev_dbg(dev, "%d: 0x%08x\n", i, leptr);
L
Linus Torvalds 已提交
183 184 185
	}

	/* Setup the Rx ring entries */
186 187
	netdev_dbg(dev, "RX rings:\n");
	for (i = 0; i < 1 << lp->lance_log_rx_bufs; i++) {
L
Linus Torvalds 已提交
188 189
		leptr = LANCE_ADDR(&aib->rx_buf[i][0]);

190 191 192 193 194 195 196
		ib->brx_ring[i].rmd0      = leptr;
		ib->brx_ring[i].rmd1_hadr = leptr >> 16;
		ib->brx_ring[i].rmd1_bits = LE_R1_OWN;
		ib->brx_ring[i].length    = -RX_BUFF_SIZE | 0xf000;
		ib->brx_ring[i].mblength  = 0;
		if (i < 3)
			netdev_dbg(dev, "%d: 0x%08x\n", i, leptr);
L
Linus Torvalds 已提交
197 198 199
	}

	/* Setup the initialization block */
200

L
Linus Torvalds 已提交
201 202 203 204
	/* Setup rx descriptor pointer */
	leptr = LANCE_ADDR(&aib->brx_ring);
	ib->rx_len = (lp->lance_log_rx_bufs << 13) | (leptr >> 16);
	ib->rx_ptr = leptr;
205
	netdev_dbg(dev, "RX ptr: %08x\n", leptr);
206

L
Linus Torvalds 已提交
207 208 209 210
	/* Setup tx descriptor pointer */
	leptr = LANCE_ADDR(&aib->btx_ring);
	ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16);
	ib->tx_ptr = leptr;
211
	netdev_dbg(dev, "TX ptr: %08x\n", leptr);
L
Linus Torvalds 已提交
212 213

	/* Clear the multicast filter */
214 215
	ib->filter[0] = 0;
	ib->filter[1] = 0;
L
Linus Torvalds 已提交
216 217
}

218
static int init_restart_lance(struct lance_private *lp)
L
Linus Torvalds 已提交
219 220 221 222 223 224 225 226 227 228 229
{
	volatile struct lance_regs *ll = lp->ll;
	int i;

	ll->rap = LE_CSR0;
	ll->rdp = LE_C0_INIT;

	/* Wait for the lance to complete initialization */
	for (i = 0; (i < 100) && !(ll->rdp & (LE_C0_ERR | LE_C0_IDON)); i++)
		barrier();
	if ((i == 100) || (ll->rdp & LE_C0_ERR)) {
230
		pr_err("unopened after %d ticks, csr0=%04x\n", i, ll->rdp);
L
Linus Torvalds 已提交
231 232 233 234 235 236 237 238 239 240
		return -EIO;
	}

	/* Clear IDON by writing a "1", enable interrupts and start lance */
	ll->rdp = LE_C0_IDON;
	ll->rdp = LE_C0_INEA | LE_C0_STRT;

	return 0;
}

241
static int lance_rx(struct net_device *dev)
L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249 250
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_init_block *ib = lp->init_block;
	volatile struct lance_regs *ll = lp->ll;
	volatile struct lance_rx_desc *rd;
	unsigned char bits;

#ifdef TEST_HITS
	int i;
251 252
	char buf[RX_RING_SIZE + 1];

L
Linus Torvalds 已提交
253
	for (i = 0; i < RX_RING_SIZE; i++) {
254
		char r1_own = ib->brx_ring[i].rmd1_bits & LE_R1_OWN;
L
Linus Torvalds 已提交
255
		if (i == lp->rx_new)
256
			buf[i] = r1_own ? '_' : 'X';
L
Linus Torvalds 已提交
257
		else
258
			buf[i] = r1_own ? '.' : '1';
L
Linus Torvalds 已提交
259
	}
260 261 262
	buf[RX_RING_SIZE] = 0;

	pr_debug("RxRing TestHits: [%s]\n", buf);
L
Linus Torvalds 已提交
263
#endif
264

265 266
	ll->rdp = LE_C0_RINT | LE_C0_INEA;
	for (rd = &ib->brx_ring[lp->rx_new];
L
Linus Torvalds 已提交
267
	     !((bits = rd->rmd1_bits) & LE_R1_OWN);
268
	     rd = &ib->brx_ring[lp->rx_new]) {
L
Linus Torvalds 已提交
269 270 271

		/* We got an incomplete frame? */
		if ((bits & LE_R1_POK) != LE_R1_POK) {
272 273
			dev->stats.rx_over_errors++;
			dev->stats.rx_errors++;
L
Linus Torvalds 已提交
274 275 276 277 278
			continue;
		} else if (bits & LE_R1_ERR) {
			/* Count only the end frame as a rx error,
			 * not the beginning
			 */
279 280 281 282 283 284 285 286 287 288
			if (bits & LE_R1_BUF)
				dev->stats.rx_fifo_errors++;
			if (bits & LE_R1_CRC)
				dev->stats.rx_crc_errors++;
			if (bits & LE_R1_OFL)
				dev->stats.rx_over_errors++;
			if (bits & LE_R1_FRA)
				dev->stats.rx_frame_errors++;
			if (bits & LE_R1_EOP)
				dev->stats.rx_errors++;
L
Linus Torvalds 已提交
289
		} else {
A
Al Viro 已提交
290
			int len = (rd->mblength & 0xfff) - 4;
291
			struct sk_buff *skb = netdev_alloc_skb(dev, len + 2);
L
Linus Torvalds 已提交
292

A
Al Viro 已提交
293
			if (!skb) {
294
				dev->stats.rx_dropped++;
L
Linus Torvalds 已提交
295 296 297 298 299
				rd->mblength = 0;
				rd->rmd1_bits = LE_R1_OWN;
				lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;
				return 0;
			}
300

301 302
			skb_reserve(skb, 2);		/* 16 byte align */
			skb_put(skb, len);		/* make room */
303
			skb_copy_to_linear_data(skb,
304 305 306 307
				 (unsigned char *)&ib->rx_buf[lp->rx_new][0],
				 len);
			skb->protocol = eth_type_trans(skb, dev);
			netif_rx(skb);
308 309
			dev->stats.rx_packets++;
			dev->stats.rx_bytes += len;
L
Linus Torvalds 已提交
310 311 312 313 314 315 316 317 318 319
		}

		/* Return the packet to the pool */
		rd->mblength = 0;
		rd->rmd1_bits = LE_R1_OWN;
		lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;
	}
	return 0;
}

320
static int lance_tx(struct net_device *dev)
L
Linus Torvalds 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_init_block *ib = lp->init_block;
	volatile struct lance_regs *ll = lp->ll;
	volatile struct lance_tx_desc *td;
	int i, j;
	int status;

	/* csr0 is 2f3 */
	ll->rdp = LE_C0_TINT | LE_C0_INEA;
	/* csr0 is 73 */

	j = lp->tx_old;
	for (i = j; i != lp->tx_new; i = j) {
335
		td = &ib->btx_ring[i];
L
Linus Torvalds 已提交
336 337 338 339

		/* If we hit a packet not owned by us, stop */
		if (td->tmd1_bits & LE_T1_OWN)
			break;
340

L
Linus Torvalds 已提交
341 342
		if (td->tmd1_bits & LE_T1_ERR) {
			status = td->misc;
343

344
			dev->stats.tx_errors++;
345 346 347 348
			if (status & LE_T3_RTY)
				dev->stats.tx_aborted_errors++;
			if (status & LE_T3_LCOL)
				dev->stats.tx_window_errors++;
L
Linus Torvalds 已提交
349 350

			if (status & LE_T3_CLOS) {
351
				dev->stats.tx_carrier_errors++;
L
Linus Torvalds 已提交
352 353
				if (lp->auto_select) {
					lp->tpe = 1 - lp->tpe;
354 355
					netdev_err(dev, "Carrier Lost, trying %s\n",
						   lp->tpe ? "TPE" : "AUI");
L
Linus Torvalds 已提交
356 357 358
					/* Stop the lance */
					ll->rap = LE_CSR0;
					ll->rdp = LE_C0_STOP;
359 360 361
					lance_init_ring(dev);
					load_csrs(lp);
					init_restart_lance(lp);
L
Linus Torvalds 已提交
362 363 364 365
					return 0;
				}
			}

366 367 368 369
			/* buffer errors and underflows turn off
			 * the transmitter, so restart the adapter
			 */
			if (status & (LE_T3_BUF | LE_T3_UFL)) {
370
				dev->stats.tx_fifo_errors++;
L
Linus Torvalds 已提交
371

372
				netdev_err(dev, "Tx: ERR_BUF|ERR_UFL, restarting\n");
L
Linus Torvalds 已提交
373 374 375
				/* Stop the lance */
				ll->rap = LE_CSR0;
				ll->rdp = LE_C0_STOP;
376 377 378
				lance_init_ring(dev);
				load_csrs(lp);
				init_restart_lance(lp);
L
Linus Torvalds 已提交
379 380 381
				return 0;
			}
		} else if ((td->tmd1_bits & LE_T1_POK) == LE_T1_POK) {
382
			/* So we don't count the packet more than once. */
L
Linus Torvalds 已提交
383 384 385 386
			td->tmd1_bits &= ~(LE_T1_POK);

			/* One collision before packet was sent. */
			if (td->tmd1_bits & LE_T1_EONE)
387
				dev->stats.collisions++;
L
Linus Torvalds 已提交
388 389 390

			/* More than one collision, be optimistic. */
			if (td->tmd1_bits & LE_T1_EMORE)
391
				dev->stats.collisions += 2;
L
Linus Torvalds 已提交
392

393
			dev->stats.tx_packets++;
L
Linus Torvalds 已提交
394
		}
395

L
Linus Torvalds 已提交
396 397 398 399 400 401 402
		j = (j + 1) & lp->tx_ring_mod_mask;
	}
	lp->tx_old = j;
	ll->rdp = LE_C0_TINT | LE_C0_INEA;
	return 0;
}

403 404 405 406 407 408 409 410
static int lance_tx_buffs_avail(struct lance_private *lp)
{
	if (lp->tx_old <= lp->tx_new)
		return lp->tx_old + lp->tx_ring_mod_mask - lp->tx_new;
	return lp->tx_old - lp->tx_new - 1;
}

static irqreturn_t lance_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
411
{
412 413 414
	struct net_device *dev = dev_id;
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_regs *ll = lp->ll;
L
Linus Torvalds 已提交
415 416 417 418 419 420 421 422 423
	int csr0;

	ll->rap = LE_CSR0;		/* LANCE Controller Status */
	csr0 = ll->rdp;

	if (!(csr0 & LE_C0_INTR))	/* Check if any interrupt has */
		return IRQ_NONE;	/* been generated by the Lance. */

	/* Acknowledge all the interrupt sources ASAP */
424
	ll->rdp = csr0 & ~(LE_C0_INEA | LE_C0_TDMD | LE_C0_STOP | LE_C0_STRT |
L
Linus Torvalds 已提交
425 426
			   LE_C0_INIT);

427
	if (csr0 & LE_C0_ERR) {
L
Linus Torvalds 已提交
428
		/* Clear the error condition */
429
		ll->rdp = LE_C0_BABL | LE_C0_ERR | LE_C0_MISS | LE_C0_INEA;
L
Linus Torvalds 已提交
430
	}
431

L
Linus Torvalds 已提交
432
	if (csr0 & LE_C0_RINT)
433
		lance_rx(dev);
L
Linus Torvalds 已提交
434 435

	if (csr0 & LE_C0_TINT)
436
		lance_tx(dev);
L
Linus Torvalds 已提交
437 438 439

	/* Log misc errors. */
	if (csr0 & LE_C0_BABL)
440
		dev->stats.tx_errors++;       /* Tx babble. */
L
Linus Torvalds 已提交
441
	if (csr0 & LE_C0_MISS)
442
		dev->stats.rx_errors++;       /* Missed a Rx frame. */
L
Linus Torvalds 已提交
443
	if (csr0 & LE_C0_MERR) {
444 445
		netdev_err(dev, "Bus master arbitration failure, status %04x\n",
			   csr0);
L
Linus Torvalds 已提交
446 447 448 449
		/* Restart the chip. */
		ll->rdp = LE_C0_STRT;
	}

450
	if (netif_queue_stopped(dev) && lance_tx_buffs_avail(lp) > 0)
L
Linus Torvalds 已提交
451 452 453
		netif_wake_queue(dev);

	ll->rap = LE_CSR0;
454 455
	ll->rdp = (LE_C0_BABL | LE_C0_CERR | LE_C0_MISS | LE_C0_MERR |
		   LE_C0_IDON | LE_C0_INEA);
L
Linus Torvalds 已提交
456 457 458
	return IRQ_HANDLED;
}

459
static int lance_open(struct net_device *dev)
L
Linus Torvalds 已提交
460 461 462 463 464 465 466 467 468 469
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_regs *ll = lp->ll;
	int ret;

	/* Stop the Lance */
	ll->rap = LE_CSR0;
	ll->rdp = LE_C0_STOP;

	/* Install the Interrupt handler */
470
	ret = request_irq(IRQ_AMIGA_PORTS, lance_interrupt, IRQF_SHARED,
L
Linus Torvalds 已提交
471
			  dev->name, dev);
472 473
	if (ret)
		return ret;
L
Linus Torvalds 已提交
474

475 476
	load_csrs(lp);
	lance_init_ring(dev);
L
Linus Torvalds 已提交
477 478 479

	netif_start_queue(dev);

480
	return init_restart_lance(lp);
L
Linus Torvalds 已提交
481 482
}

483
static int lance_close(struct net_device *dev)
L
Linus Torvalds 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_regs *ll = lp->ll;

	netif_stop_queue(dev);
	del_timer_sync(&lp->multicast_timer);

	/* Stop the card */
	ll->rap = LE_CSR0;
	ll->rdp = LE_C0_STOP;

	free_irq(IRQ_AMIGA_PORTS, dev);
	return 0;
}

499
static inline int lance_reset(struct net_device *dev)
L
Linus Torvalds 已提交
500 501 502 503
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_regs *ll = lp->ll;
	int status;
504

L
Linus Torvalds 已提交
505 506 507 508
	/* Stop the lance */
	ll->rap = LE_CSR0;
	ll->rdp = LE_C0_STOP;

509
	load_csrs(lp);
L
Linus Torvalds 已提交
510

511
	lance_init_ring(dev);
512
	netif_trans_update(dev); /* prevent tx timeout */
L
Linus Torvalds 已提交
513 514
	netif_start_queue(dev);

515 516 517
	status = init_restart_lance(lp);
	netdev_dbg(dev, "Lance restart=%d\n", status);

L
Linus Torvalds 已提交
518 519 520
	return status;
}

521
static void lance_tx_timeout(struct net_device *dev, unsigned int txqueue)
L
Linus Torvalds 已提交
522 523 524 525
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_regs *ll = lp->ll;

526
	netdev_err(dev, "transmit timed out, status %04x, reset\n", ll->rdp);
L
Linus Torvalds 已提交
527 528 529 530
	lance_reset(dev);
	netif_wake_queue(dev);
}

531 532
static netdev_tx_t lance_start_xmit(struct sk_buff *skb,
				    struct net_device *dev)
L
Linus Torvalds 已提交
533 534 535 536
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_regs *ll = lp->ll;
	volatile struct lance_init_block *ib = lp->init_block;
D
Dave Jones 已提交
537
	int entry, skblen;
538
	int status = NETDEV_TX_OK;
L
Linus Torvalds 已提交
539 540
	unsigned long flags;

D
Dave Jones 已提交
541
	if (skb_padto(skb, ETH_ZLEN))
542
		return NETDEV_TX_OK;
D
Dave Jones 已提交
543
	skblen = max_t(unsigned, skb->len, ETH_ZLEN);
L
Linus Torvalds 已提交
544 545 546

	local_irq_save(flags);

547 548
	if (!lance_tx_buffs_avail(lp))
		goto out_free;
L
Linus Torvalds 已提交
549 550

	/* dump the packet */
551 552 553
	print_hex_dump_debug("skb->data: ", DUMP_PREFIX_NONE, 16, 1, skb->data,
			     64, true);

L
Linus Torvalds 已提交
554
	entry = lp->tx_new & lp->tx_ring_mod_mask;
555 556
	ib->btx_ring[entry].length = (-skblen) | 0xf000;
	ib->btx_ring[entry].misc = 0;
557

558
	skb_copy_from_linear_data(skb, (void *)&ib->tx_buf[entry][0], skblen);
L
Linus Torvalds 已提交
559 560

	/* Now, give the packet to the lance */
561
	ib->btx_ring[entry].tmd1_bits = (LE_T1_POK | LE_T1_OWN);
L
Linus Torvalds 已提交
562
	lp->tx_new = (lp->tx_new+1) & lp->tx_ring_mod_mask;
563
	dev->stats.tx_bytes += skblen;
L
Linus Torvalds 已提交
564

565
	if (lance_tx_buffs_avail(lp) <= 0)
L
Linus Torvalds 已提交
566 567 568 569
		netif_stop_queue(dev);

	/* Kick the lance: transmit now */
	ll->rdp = LE_C0_INEA | LE_C0_TDMD;
570
 out_free:
571
	dev_kfree_skb(skb);
572

L
Linus Torvalds 已提交
573 574 575 576 577 578
	local_irq_restore(flags);

	return status;
}

/* taken from the depca driver */
579
static void lance_load_multicast(struct net_device *dev)
L
Linus Torvalds 已提交
580 581 582 583
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_init_block *ib = lp->init_block;
	volatile u16 *mcast_table = (u16 *)&ib->filter;
584
	struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
585
	u32 crc;
586

L
Linus Torvalds 已提交
587
	/* set all multicast bits */
588 589 590
	if (dev->flags & IFF_ALLMULTI) {
		ib->filter[0] = 0xffffffff;
		ib->filter[1] = 0xffffffff;
L
Linus Torvalds 已提交
591 592 593
		return;
	}
	/* clear the multicast filter */
594 595
	ib->filter[0] = 0;
	ib->filter[1] = 0;
L
Linus Torvalds 已提交
596 597

	/* Add addresses */
598
	netdev_for_each_mc_addr(ha, dev) {
599
		crc = ether_crc_le(6, ha->addr);
L
Linus Torvalds 已提交
600
		crc = crc >> 26;
601
		mcast_table[crc >> 4] |= 1 << (crc & 0xf);
L
Linus Torvalds 已提交
602 603 604
	}
}

605
static void lance_set_multicast(struct net_device *dev)
L
Linus Torvalds 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
{
	struct lance_private *lp = netdev_priv(dev);
	volatile struct lance_init_block *ib = lp->init_block;
	volatile struct lance_regs *ll = lp->ll;

	if (!netif_running(dev))
		return;

	if (lp->tx_old != lp->tx_new) {
		mod_timer(&lp->multicast_timer, jiffies + 4);
		netif_wake_queue(dev);
		return;
	}

	netif_stop_queue(dev);

	ll->rap = LE_CSR0;
	ll->rdp = LE_C0_STOP;
624
	lance_init_ring(dev);
L
Linus Torvalds 已提交
625 626 627 628 629

	if (dev->flags & IFF_PROMISC) {
		ib->mode |= LE_MO_PROM;
	} else {
		ib->mode &= ~LE_MO_PROM;
630
		lance_load_multicast(dev);
L
Linus Torvalds 已提交
631
	}
632 633
	load_csrs(lp);
	init_restart_lance(lp);
L
Linus Torvalds 已提交
634 635 636
	netif_wake_queue(dev);
}

637 638 639 640 641 642 643
static void lance_set_multicast_retry(struct timer_list *t)
{
	struct lance_private *lp = from_timer(lp, t, multicast_timer);

	lance_set_multicast(lp->dev);
}

B
Bill Pemberton 已提交
644
static int a2065_init_one(struct zorro_dev *z,
645
			  const struct zorro_device_id *ent);
B
Bill Pemberton 已提交
646
static void a2065_remove_one(struct zorro_dev *z);
L
Linus Torvalds 已提交
647 648


649
static const struct zorro_device_id a2065_zorro_tbl[] = {
L
Linus Torvalds 已提交
650 651 652 653 654
	{ ZORRO_PROD_CBM_A2065_1 },
	{ ZORRO_PROD_CBM_A2065_2 },
	{ ZORRO_PROD_AMERISTAR_A2065 },
	{ 0 }
};
655
MODULE_DEVICE_TABLE(zorro, a2065_zorro_tbl);
L
Linus Torvalds 已提交
656 657 658 659 660

static struct zorro_driver a2065_driver = {
	.name		= "a2065",
	.id_table	= a2065_zorro_tbl,
	.probe		= a2065_init_one,
B
Bill Pemberton 已提交
661
	.remove		= a2065_remove_one,
L
Linus Torvalds 已提交
662 663
};

664 665 666 667 668
static const struct net_device_ops lance_netdev_ops = {
	.ndo_open		= lance_open,
	.ndo_stop		= lance_close,
	.ndo_start_xmit		= lance_start_xmit,
	.ndo_tx_timeout		= lance_tx_timeout,
669
	.ndo_set_rx_mode	= lance_set_multicast,
670 671 672 673
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
};

B
Bill Pemberton 已提交
674
static int a2065_init_one(struct zorro_dev *z,
675
			  const struct zorro_device_id *ent)
L
Linus Torvalds 已提交
676 677 678
{
	struct net_device *dev;
	struct lance_private *priv;
679 680 681
	unsigned long board = z->resource.start;
	unsigned long base_addr = board + A2065_LANCE;
	unsigned long mem_start = board + A2065_RAM;
L
Linus Torvalds 已提交
682
	struct resource *r1, *r2;
683
	u8 addr[ETH_ALEN];
684
	u32 serial;
L
Linus Torvalds 已提交
685 686 687 688 689 690 691 692
	int err;

	r1 = request_mem_region(base_addr, sizeof(struct lance_regs),
				"Am7990");
	if (!r1)
		return -EBUSY;
	r2 = request_mem_region(mem_start, A2065_RAM_SIZE, "RAM");
	if (!r2) {
693
		release_mem_region(base_addr, sizeof(struct lance_regs));
L
Linus Torvalds 已提交
694 695 696 697 698
		return -EBUSY;
	}

	dev = alloc_etherdev(sizeof(struct lance_private));
	if (dev == NULL) {
699 700
		release_mem_region(base_addr, sizeof(struct lance_regs));
		release_mem_region(mem_start, A2065_RAM_SIZE);
L
Linus Torvalds 已提交
701 702 703 704 705 706 707 708
		return -ENOMEM;
	}

	priv = netdev_priv(dev);

	r1->name = dev->name;
	r2->name = dev->name;

709
	serial = be32_to_cpu(z->rom.er_SerialNumber);
710
	addr[0] = 0x00;
L
Linus Torvalds 已提交
711
	if (z->id != ZORRO_PROD_AMERISTAR_A2065) {	/* Commodore */
712 713
		addr[1] = 0x80;
		addr[2] = 0x10;
L
Linus Torvalds 已提交
714
	} else {					/* Ameristar */
715 716
		addr[1] = 0x00;
		addr[2] = 0x9f;
L
Linus Torvalds 已提交
717
	}
718 719 720 721
	addr[3] = (serial >> 16) & 0xff;
	addr[4] = (serial >> 8) & 0xff;
	addr[5] = serial & 0xff;
	eth_hw_addr_set(dev, addr);
722 723
	dev->base_addr = (unsigned long)ZTWO_VADDR(base_addr);
	dev->mem_start = (unsigned long)ZTWO_VADDR(mem_start);
724
	dev->mem_end = dev->mem_start + A2065_RAM_SIZE;
L
Linus Torvalds 已提交
725 726 727 728 729 730 731 732 733 734 735

	priv->ll = (volatile struct lance_regs *)dev->base_addr;
	priv->init_block = (struct lance_init_block *)dev->mem_start;
	priv->lance_init_block = (struct lance_init_block *)A2065_RAM;
	priv->auto_select = 0;
	priv->busmaster_regval = LE_C3_BSWP;

	priv->lance_log_rx_bufs = LANCE_LOG_RX_BUFFERS;
	priv->lance_log_tx_bufs = LANCE_LOG_TX_BUFFERS;
	priv->rx_ring_mod_mask = RX_RING_MOD_MASK;
	priv->tx_ring_mod_mask = TX_RING_MOD_MASK;
736
	priv->dev = dev;
L
Linus Torvalds 已提交
737

738
	dev->netdev_ops = &lance_netdev_ops;
L
Linus Torvalds 已提交
739 740 741
	dev->watchdog_timeo = 5*HZ;
	dev->dma = 0;

742
	timer_setup(&priv->multicast_timer, lance_set_multicast_retry, 0);
L
Linus Torvalds 已提交
743 744 745

	err = register_netdev(dev);
	if (err) {
746 747
		release_mem_region(base_addr, sizeof(struct lance_regs));
		release_mem_region(mem_start, A2065_RAM_SIZE);
L
Linus Torvalds 已提交
748 749 750 751 752
		free_netdev(dev);
		return err;
	}
	zorro_set_drvdata(z, dev);

753 754
	netdev_info(dev, "A2065 at 0x%08lx, Ethernet Address %pM\n",
		    board, dev->dev_addr);
L
Linus Torvalds 已提交
755 756 757 758 759

	return 0;
}


B
Bill Pemberton 已提交
760
static void a2065_remove_one(struct zorro_dev *z)
L
Linus Torvalds 已提交
761 762 763 764 765 766 767 768 769 770 771 772
{
	struct net_device *dev = zorro_get_drvdata(z);

	unregister_netdev(dev);
	release_mem_region(ZTWO_PADDR(dev->base_addr),
			   sizeof(struct lance_regs));
	release_mem_region(ZTWO_PADDR(dev->mem_start), A2065_RAM_SIZE);
	free_netdev(dev);
}

static int __init a2065_init_module(void)
{
773
	return zorro_register_driver(&a2065_driver);
L
Linus Torvalds 已提交
774 775 776 777 778 779 780 781 782 783 784
}

static void __exit a2065_cleanup_module(void)
{
	zorro_unregister_driver(&a2065_driver);
}

module_init(a2065_init_module);
module_exit(a2065_cleanup_module);

MODULE_LICENSE("GPL");