com90xx.c 18.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Linux ARCnet driver - COM90xx chipset (memory-mapped buffers)
3
 *
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * Written 1994-1999 by Avery Pennarun.
 * Written 1999 by Martin Mares <mj@ucw.cz>.
 * Derived from skeleton.c by Donald Becker.
 *
 * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
 *  for sponsoring the further development of this driver.
 *
 * **********************
 *
 * The original copyright of skeleton.c was as follows:
 *
 * skeleton.c Written 1993 by Donald Becker.
 * Copyright 1993 United States Government as represented by the
 * Director, National Security Agency.  This software may only be used
 * and distributed according to the terms of the GNU General Public License as
 * modified by SRC, incorporated herein by reference.
 *
 * **********************
 *
 * For more details, see drivers/net/arcnet.c
 *
 * **********************
 */
27 28 29

#define pr_fmt(fmt) "arcnet:" KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
30 31 32
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
33
#include <linux/interrupt.h>
L
Linus Torvalds 已提交
34 35 36
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/netdevice.h>
37
#include <linux/slab.h>
38
#include <linux/io.h>
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#include <linux/arcdevice.h>

/* Define this to speed up the autoprobe by assuming if only one io port and
 * shmem are left in the list at Stage 5, they must correspond to each
 * other.
 *
 * This is undefined by default because it might not always be true, and the
 * extra check makes the autoprobe even more careful.  Speed demons can turn
 * it on - I think it should be fine if you only have one ARCnet card
 * installed.
 *
 * If no ARCnet cards are installed, this delay never happens anyway and thus
 * the option has no effect.
 */
#undef FAST_PROBE

/* Internal function declarations */
56
static int com90xx_found(int ioaddr, int airq, u_long shmem, void __iomem *);
L
Linus Torvalds 已提交
57 58 59 60 61 62
static void com90xx_command(struct net_device *dev, int command);
static int com90xx_status(struct net_device *dev);
static void com90xx_setmask(struct net_device *dev, int mask);
static int com90xx_reset(struct net_device *dev, int really_reset);
static void com90xx_copy_to_card(struct net_device *dev, int bufnum, int offset,
				 void *buf, int count);
J
Joe Perches 已提交
63 64
static void com90xx_copy_from_card(struct net_device *dev, int bufnum,
				   int offset, void *buf, int count);
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77

/* Known ARCnet cards */

static struct net_device *cards[16];
static int numcards;

/* Handy defines for ARCnet specific stuff */

/* The number of low I/O ports used by the card */
#define ARCNET_TOTAL_SIZE	16

/* Amount of I/O memory used by the card */
#define BUFFER_SIZE (512)
78
#define MIRROR_SIZE (BUFFER_SIZE * 4)
L
Linus Torvalds 已提交
79 80

/* COM 9026 controller chip --> ARCnet register addresses */
81 82 83 84 85 86 87 88
#define _INTMASK	(ioaddr + 0)	/* writable */
#define _STATUS		(ioaddr + 0)	/* readable */
#define _COMMAND	(ioaddr + 1)	/* writable, returns random vals on read (?) */
#define _CONFIG		(ioaddr + 2)	/* Configuration register */
#define _RESET		(ioaddr + 8)	/* software reset (on read) */
#define _MEMDATA	(ioaddr + 12)	/* Data port for IO-mapped memory */
#define _ADDR_HI	(ioaddr + 15)	/* Control registers for said */
#define _ADDR_LO	(ioaddr + 14)
L
Linus Torvalds 已提交
89 90 91 92 93 94

#undef ASTATUS
#undef ACOMMAND
#undef AINTMASK

#define ASTATUS()	inb(_STATUS)
95 96
#define ACOMMAND(cmd)	outb((cmd), _COMMAND)
#define AINTMASK(msk)	outb((msk), _INTMASK)
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

static int com90xx_skip_probe __initdata = 0;

/* Module parameters */

static int io;			/* use the insmod io= irq= shmem= options */
static int irq;
static int shmem;
static char device[9];		/* use eg. device=arc1 to change name */

module_param(io, int, 0);
module_param(irq, int, 0);
module_param(shmem, int, 0);
module_param_string(device, device, sizeof(device), 0);

static void __init com90xx_probe(void)
{
	int count, status, ioaddr, numprint, airq, openparen = 0;
	unsigned long airqmask;
116
	int ports[(0x3f0 - 0x200) / 16 + 1] = {	0 };
117 118
	unsigned long *shmems;
	void __iomem **iomem;
L
Linus Torvalds 已提交
119 120
	int numports, numshmems, *port;
	u_long *p;
121
	int index;
L
Linus Torvalds 已提交
122 123 124 125

	if (!io && !irq && !shmem && !*device && com90xx_skip_probe)
		return;

126
	shmems = kzalloc(((0x100000 - 0xa0000) / 0x800) * sizeof(unsigned long),
127 128 129
			 GFP_KERNEL);
	if (!shmems)
		return;
130 131
	iomem = kzalloc(((0x100000 - 0xa0000) / 0x800) * sizeof(void __iomem *),
			GFP_KERNEL);
132 133 134 135 136
	if (!iomem) {
		kfree(shmems);
		return;
	}

137
	if (BUGLVL(D_NORMAL))
138
		pr_info("%s\n", "COM90xx chipset support");
L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

	/* set up the arrays where we'll store the possible probe addresses */
	numports = numshmems = 0;
	if (io)
		ports[numports++] = io;
	else
		for (count = 0x200; count <= 0x3f0; count += 16)
			ports[numports++] = count;
	if (shmem)
		shmems[numshmems++] = shmem;
	else
		for (count = 0xA0000; count <= 0xFF800; count += 2048)
			shmems[numshmems++] = count;

	/* Stage 1: abandon any reserved ports, or ones with status==0xFF
	 * (empty), and reset any others by reading the reset port.
	 */
	numprint = -1;
	for (port = &ports[0]; port - ports < numports; port++) {
		numprint++;
		numprint %= 8;
		if (!numprint) {
161 162
			arc_cont(D_INIT, "\n");
			arc_cont(D_INIT, "S1: ");
L
Linus Torvalds 已提交
163
		}
164
		arc_cont(D_INIT, "%Xh ", *port);
L
Linus Torvalds 已提交
165 166 167

		ioaddr = *port;

J
Joe Perches 已提交
168 169
		if (!request_region(*port, ARCNET_TOTAL_SIZE,
				    "arcnet (90xx)")) {
170 171
			arc_cont(D_INIT_REASONS, "(request_region)\n");
			arc_cont(D_INIT_REASONS, "S1: ");
172 173
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
L
Linus Torvalds 已提交
174 175 176 177
			*port-- = ports[--numports];
			continue;
		}
		if (ASTATUS() == 0xFF) {
178 179
			arc_cont(D_INIT_REASONS, "(empty)\n");
			arc_cont(D_INIT_REASONS, "S1: ");
180 181
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
L
Linus Torvalds 已提交
182 183 184 185 186 187
			release_region(*port, ARCNET_TOTAL_SIZE);
			*port-- = ports[--numports];
			continue;
		}
		inb(_RESET);	/* begin resetting card */

188 189
		arc_cont(D_INIT_REASONS, "\n");
		arc_cont(D_INIT_REASONS, "S1: ");
190 191
		if (BUGLVL(D_INIT_REASONS))
			numprint = 0;
L
Linus Torvalds 已提交
192
	}
193
	arc_cont(D_INIT, "\n");
L
Linus Torvalds 已提交
194 195

	if (!numports) {
196
		arc_cont(D_NORMAL, "S1: No ARCnet cards found.\n");
197 198
		kfree(shmems);
		kfree(iomem);
L
Linus Torvalds 已提交
199 200 201 202 203 204 205 206 207 208 209
		return;
	}
	/* Stage 2: we have now reset any possible ARCnet cards, so we can't
	 * do anything until they finish.  If D_INIT, print the list of
	 * cards that are left.
	 */
	numprint = -1;
	for (port = &ports[0]; port < ports + numports; port++) {
		numprint++;
		numprint %= 8;
		if (!numprint) {
210 211
			arc_cont(D_INIT, "\n");
			arc_cont(D_INIT, "S2: ");
L
Linus Torvalds 已提交
212
		}
213
		arc_cont(D_INIT, "%Xh ", *port);
L
Linus Torvalds 已提交
214
	}
215
	arc_cont(D_INIT, "\n");
L
Linus Torvalds 已提交
216 217 218 219 220 221
	mdelay(RESETtime);

	/* Stage 3: abandon any shmem addresses that don't have the signature
	 * 0xD1 byte in the right place, or are read-only.
	 */
	numprint = -1;
222 223
	for (index = 0, p = &shmems[0]; index < numshmems; p++, index++) {
		void __iomem *base;
L
Linus Torvalds 已提交
224 225 226 227

		numprint++;
		numprint %= 8;
		if (!numprint) {
228 229
			arc_cont(D_INIT, "\n");
			arc_cont(D_INIT, "S3: ");
L
Linus Torvalds 已提交
230
		}
231
		arc_cont(D_INIT, "%lXh ", *p);
L
Linus Torvalds 已提交
232

233
		if (!request_mem_region(*p, MIRROR_SIZE, "arcnet (90xx)")) {
234 235
			arc_cont(D_INIT_REASONS, "(request_mem_region)\n");
			arc_cont(D_INIT_REASONS, "Stage 3: ");
236 237
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
238 239 240 241
			goto out;
		}
		base = ioremap(*p, MIRROR_SIZE);
		if (!base) {
242 243
			arc_cont(D_INIT_REASONS, "(ioremap)\n");
			arc_cont(D_INIT_REASONS, "Stage 3: ");
244 245
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
246
			goto out1;
L
Linus Torvalds 已提交
247
		}
248
		if (readb(base) != TESTvalue) {
249 250 251
			arc_cont(D_INIT_REASONS, "(%02Xh != %02Xh)\n",
				 readb(base), TESTvalue);
			arc_cont(D_INIT_REASONS, "S3: ");
252 253
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
254
			goto out2;
L
Linus Torvalds 已提交
255 256 257 258 259 260
		}
		/* By writing 0x42 to the TESTvalue location, we also make
		 * sure no "mirror" shmem areas show up - if they occur
		 * in another pass through this loop, they will be discarded
		 * because *cptr != TESTvalue.
		 */
261 262
		writeb(0x42, base);
		if (readb(base) != 0x42) {
263 264
			arc_cont(D_INIT_REASONS, "(read only)\n");
			arc_cont(D_INIT_REASONS, "S3: ");
265
			goto out2;
L
Linus Torvalds 已提交
266
		}
267 268
		arc_cont(D_INIT_REASONS, "\n");
		arc_cont(D_INIT_REASONS, "S3: ");
269 270
		if (BUGLVL(D_INIT_REASONS))
			numprint = 0;
271 272 273 274 275 276 277 278 279
		iomem[index] = base;
		continue;
	out2:
		iounmap(base);
	out1:
		release_mem_region(*p, MIRROR_SIZE);
	out:
		*p-- = shmems[--numshmems];
		index--;
L
Linus Torvalds 已提交
280
	}
281
	arc_cont(D_INIT, "\n");
L
Linus Torvalds 已提交
282 283

	if (!numshmems) {
284
		arc_cont(D_NORMAL, "S3: No ARCnet cards found.\n");
L
Linus Torvalds 已提交
285 286
		for (port = &ports[0]; port < ports + numports; port++)
			release_region(*port, ARCNET_TOTAL_SIZE);
287 288
		kfree(shmems);
		kfree(iomem);
L
Linus Torvalds 已提交
289 290 291 292 293 294 295 296 297 298
		return;
	}
	/* Stage 4: something of a dummy, to report the shmems that are
	 * still possible after stage 3.
	 */
	numprint = -1;
	for (p = &shmems[0]; p < shmems + numshmems; p++) {
		numprint++;
		numprint %= 8;
		if (!numprint) {
299 300
			arc_cont(D_INIT, "\n");
			arc_cont(D_INIT, "S4: ");
L
Linus Torvalds 已提交
301
		}
302
		arc_cont(D_INIT, "%lXh ", *p);
L
Linus Torvalds 已提交
303
	}
304
	arc_cont(D_INIT, "\n");
L
Linus Torvalds 已提交
305 306 307 308 309 310 311 312 313 314 315

	/* Stage 5: for any ports that have the correct status, can disable
	 * the RESET flag, and (if no irq is given) generate an autoirq,
	 * register an ARCnet device.
	 *
	 * Currently, we can only register one device per probe, so quit
	 * after the first one is found.
	 */
	numprint = -1;
	for (port = &ports[0]; port < ports + numports; port++) {
		int found = 0;
J
Joe Perches 已提交
316

L
Linus Torvalds 已提交
317 318 319
		numprint++;
		numprint %= 8;
		if (!numprint) {
320 321
			arc_cont(D_INIT, "\n");
			arc_cont(D_INIT, "S5: ");
L
Linus Torvalds 已提交
322
		}
323
		arc_cont(D_INIT, "%Xh ", *port);
L
Linus Torvalds 已提交
324 325 326 327 328 329

		ioaddr = *port;
		status = ASTATUS();

		if ((status & 0x9D)
		    != (NORXflag | RECONflag | TXFREEflag | RESETflag)) {
330 331
			arc_cont(D_INIT_REASONS, "(status=%Xh)\n", status);
			arc_cont(D_INIT_REASONS, "S5: ");
332 333
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
L
Linus Torvalds 已提交
334 335 336 337 338 339 340
			release_region(*port, ARCNET_TOTAL_SIZE);
			*port-- = ports[--numports];
			continue;
		}
		ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
		status = ASTATUS();
		if (status & RESETflag) {
341 342 343
			arc_cont(D_INIT_REASONS, " (eternal reset, status=%Xh)\n",
				 status);
			arc_cont(D_INIT_REASONS, "S5: ");
344 345
			if (BUGLVL(D_INIT_REASONS))
				numprint = 0;
L
Linus Torvalds 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
			release_region(*port, ARCNET_TOTAL_SIZE);
			*port-- = ports[--numports];
			continue;
		}
		/* skip this completely if an IRQ was given, because maybe
		 * we're on a machine that locks during autoirq!
		 */
		if (!irq) {
			/* if we do this, we're sure to get an IRQ since the
			 * card has just reset and the NORXflag is on until
			 * we tell it to start receiving.
			 */
			airqmask = probe_irq_on();
			AINTMASK(NORXflag);
			udelay(1);
			AINTMASK(0);
			airq = probe_irq_off(airqmask);

			if (airq <= 0) {
365 366
				arc_cont(D_INIT_REASONS, "(airq=%d)\n", airq);
				arc_cont(D_INIT_REASONS, "S5: ");
367 368
				if (BUGLVL(D_INIT_REASONS))
					numprint = 0;
L
Linus Torvalds 已提交
369 370 371 372 373 374 375 376
				release_region(*port, ARCNET_TOTAL_SIZE);
				*port-- = ports[--numports];
				continue;
			}
		} else {
			airq = irq;
		}

377
		arc_cont(D_INIT, "(%d,", airq);
L
Linus Torvalds 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391
		openparen = 1;

		/* Everything seems okay.  But which shmem, if any, puts
		 * back its signature byte when the card is reset?
		 *
		 * If there are multiple cards installed, there might be
		 * multiple shmems still in the list.
		 */
#ifdef FAST_PROBE
		if (numports > 1 || numshmems > 1) {
			inb(_RESET);
			mdelay(RESETtime);
		} else {
			/* just one shmem and port, assume they match */
392
			writeb(TESTvalue, iomem[0]);
L
Linus Torvalds 已提交
393 394 395 396 397 398
		}
#else
		inb(_RESET);
		mdelay(RESETtime);
#endif

399 400 401
		for (index = 0; index < numshmems; index++) {
			u_long ptr = shmems[index];
			void __iomem *base = iomem[index];
L
Linus Torvalds 已提交
402

403
			if (readb(base) == TESTvalue) {	/* found one */
404
				arc_cont(D_INIT, "%lXh)\n", *p);
L
Linus Torvalds 已提交
405 406 407
				openparen = 0;

				/* register the card */
408
				if (com90xx_found(*port, airq, ptr, base) == 0)
L
Linus Torvalds 已提交
409 410 411 412
					found = 1;
				numprint = -1;

				/* remove shmem from the list */
413 414
				shmems[index] = shmems[--numshmems];
				iomem[index] = iomem[numshmems];
L
Linus Torvalds 已提交
415 416
				break;	/* go to the next I/O port */
			} else {
417
				arc_cont(D_INIT_REASONS, "%Xh-", readb(base));
L
Linus Torvalds 已提交
418 419 420 421
			}
		}

		if (openparen) {
422
			if (BUGLVL(D_INIT))
423
				pr_cont("no matching shmem)\n");
424
			if (BUGLVL(D_INIT_REASONS)) {
425
				pr_cont("S5: ");
426 427
				numprint = 0;
			}
L
Linus Torvalds 已提交
428 429 430 431 432 433
		}
		if (!found)
			release_region(*port, ARCNET_TOTAL_SIZE);
		*port-- = ports[--numports];
	}

434
	if (BUGLVL(D_INIT_REASONS))
435
		pr_cont("\n");
L
Linus Torvalds 已提交
436 437

	/* Now put back TESTvalue on all leftover shmems. */
438 439 440 441
	for (index = 0; index < numshmems; index++) {
		writeb(TESTvalue, iomem[index]);
		iounmap(iomem[index]);
		release_mem_region(shmems[index], MIRROR_SIZE);
L
Linus Torvalds 已提交
442
	}
443 444
	kfree(shmems);
	kfree(iomem);
L
Linus Torvalds 已提交
445 446
}

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
static int check_mirror(unsigned long addr, size_t size)
{
	void __iomem *p;
	int res = -1;

	if (!request_mem_region(addr, size, "arcnet (90xx)"))
		return -1;

	p = ioremap(addr, size);
	if (p) {
		if (readb(p) == TESTvalue)
			res = 1;
		else
			res = 0;
		iounmap(p);
	}

	release_mem_region(addr, size);
	return res;
}
L
Linus Torvalds 已提交
467 468 469 470

/* Set up the struct net_device associated with this card.  Called after
 * probing succeeds.
 */
J
Joe Perches 已提交
471 472
static int __init com90xx_found(int ioaddr, int airq, u_long shmem,
				void __iomem *p)
L
Linus Torvalds 已提交
473 474 475 476 477 478 479 480 481
{
	struct net_device *dev = NULL;
	struct arcnet_local *lp;
	u_long first_mirror, last_mirror;
	int mirror_size;

	/* allocate struct net_device */
	dev = alloc_arcdev(device);
	if (!dev) {
482
		arc_cont(D_NORMAL, "com90xx: Can't allocate device!\n");
483 484
		iounmap(p);
		release_mem_region(shmem, MIRROR_SIZE);
L
Linus Torvalds 已提交
485 486
		return -ENOMEM;
	}
487
	lp = netdev_priv(dev);
L
Linus Torvalds 已提交
488 489 490 491 492 493 494
	/* find the real shared memory start/end points, including mirrors */

	/* guess the actual size of one "memory mirror" - the number of
	 * bytes between copies of the shared memory.  On most cards, it's
	 * 2k (or there are no mirrors at all) but on some, it's 4k.
	 */
	mirror_size = MIRROR_SIZE;
495 496 497 498
	if (readb(p) == TESTvalue &&
	    check_mirror(shmem - MIRROR_SIZE, MIRROR_SIZE) == 0 &&
	    check_mirror(shmem - 2 * MIRROR_SIZE, MIRROR_SIZE) == 1)
		mirror_size = 2 * MIRROR_SIZE;
L
Linus Torvalds 已提交
499

500 501
	first_mirror = shmem - mirror_size;
	while (check_mirror(first_mirror, mirror_size) == 1)
L
Linus Torvalds 已提交
502 503 504
		first_mirror -= mirror_size;
	first_mirror += mirror_size;

505 506
	last_mirror = shmem + mirror_size;
	while (check_mirror(last_mirror, mirror_size) == 1)
L
Linus Torvalds 已提交
507 508 509 510 511 512
		last_mirror += mirror_size;
	last_mirror -= mirror_size;

	dev->mem_start = first_mirror;
	dev->mem_end = last_mirror + MIRROR_SIZE - 1;

513 514 515
	iounmap(p);
	release_mem_region(shmem, MIRROR_SIZE);

J
Joe Perches 已提交
516 517 518
	if (!request_mem_region(dev->mem_start,
				dev->mem_end - dev->mem_start + 1,
				"arcnet (90xx)"))
L
Linus Torvalds 已提交
519 520 521
		goto err_free_dev;

	/* reserve the irq */
522
	if (request_irq(airq, arcnet_interrupt, 0, "arcnet (90xx)", dev)) {
523
		arc_printk(D_NORMAL, dev, "Can't get IRQ %d!\n", airq);
L
Linus Torvalds 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536
		goto err_release_mem;
	}
	dev->irq = airq;

	/* Initialize the rest of the device structure. */
	lp->card_name = "COM90xx";
	lp->hw.command = com90xx_command;
	lp->hw.status = com90xx_status;
	lp->hw.intmask = com90xx_setmask;
	lp->hw.reset = com90xx_reset;
	lp->hw.owner = THIS_MODULE;
	lp->hw.copy_to_card = com90xx_copy_to_card;
	lp->hw.copy_from_card = com90xx_copy_from_card;
J
Joe Perches 已提交
537 538
	lp->mem_start = ioremap(dev->mem_start,
				dev->mem_end - dev->mem_start + 1);
L
Linus Torvalds 已提交
539
	if (!lp->mem_start) {
540
		arc_printk(D_NORMAL, dev, "Can't remap device memory!\n");
L
Linus Torvalds 已提交
541 542 543 544 545 546 547 548
		goto err_free_irq;
	}

	/* get and check the station ID from offset 1 in shmem */
	dev->dev_addr[0] = readb(lp->mem_start + 1);

	dev->base_addr = ioaddr;

549 550 551 552 553
	arc_printk(D_NORMAL, dev, "COM90xx station %02Xh found at %03lXh, IRQ %d, ShMem %lXh (%ld*%xh).\n",
		   dev->dev_addr[0],
		   dev->base_addr, dev->irq, dev->mem_start,
		   (dev->mem_end - dev->mem_start + 1) / mirror_size,
		   mirror_size);
L
Linus Torvalds 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592

	if (register_netdev(dev))
		goto err_unmap;

	cards[numcards++] = dev;
	return 0;

err_unmap:
	iounmap(lp->mem_start);
err_free_irq:
	free_irq(dev->irq, dev);
err_release_mem:
	release_mem_region(dev->mem_start, dev->mem_end - dev->mem_start + 1);
err_free_dev:
	free_netdev(dev);
	return -EIO;
}

static void com90xx_command(struct net_device *dev, int cmd)
{
	short ioaddr = dev->base_addr;

	ACOMMAND(cmd);
}

static int com90xx_status(struct net_device *dev)
{
	short ioaddr = dev->base_addr;

	return ASTATUS();
}

static void com90xx_setmask(struct net_device *dev, int mask)
{
	short ioaddr = dev->base_addr;

	AINTMASK(mask);
}

593
/* Do a hardware reset on the card, and set up necessary registers.
594
 *
L
Linus Torvalds 已提交
595 596 597 598 599
 * This should be called as little as possible, because it disrupts the
 * token on the network (causes a RECON) and requires a significant delay.
 *
 * However, it does make sure the card is in a defined state.
 */
600
static int com90xx_reset(struct net_device *dev, int really_reset)
L
Linus Torvalds 已提交
601
{
602
	struct arcnet_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
603 604
	short ioaddr = dev->base_addr;

605
	arc_printk(D_INIT, dev, "Resetting (status=%02Xh)\n", ASTATUS());
L
Linus Torvalds 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620

	if (really_reset) {
		/* reset the card */
		inb(_RESET);
		mdelay(RESETtime);
	}
	ACOMMAND(CFLAGScmd | RESETclear);	/* clear flags & end reset */
	ACOMMAND(CFLAGScmd | CONFIGclear);

	/* don't do this until we verify that it doesn't hurt older cards! */
	/* outb(inb(_CONFIG) | ENABLE16flag, _CONFIG); */

	/* verify that the ARCnet signature byte is present */
	if (readb(lp->mem_start) != TESTvalue) {
		if (really_reset)
621
			arc_printk(D_NORMAL, dev, "reset failed: TESTvalue not present.\n");
L
Linus Torvalds 已提交
622 623 624 625 626 627
		return 1;
	}
	/* enable extended (512-byte) packets */
	ACOMMAND(CONFIGcmd | EXTconf);

	/* clean out all the memory to make debugging make more sense :) */
628 629
	if (BUGLVL(D_DURING))
		memset_io(lp->mem_start, 0x42, 2048);
L
Linus Torvalds 已提交
630 631 632 633 634

	/* done!  return success. */
	return 0;
}

J
Joe Perches 已提交
635 636
static void com90xx_copy_to_card(struct net_device *dev, int bufnum,
				 int offset, void *buf, int count)
L
Linus Torvalds 已提交
637
{
638
	struct arcnet_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
639
	void __iomem *memaddr = lp->mem_start + bufnum * 512 + offset;
J
Joe Perches 已提交
640

641
	TIME(dev, "memcpy_toio", count, memcpy_toio(memaddr, buf, count));
L
Linus Torvalds 已提交
642 643
}

J
Joe Perches 已提交
644 645
static void com90xx_copy_from_card(struct net_device *dev, int bufnum,
				   int offset, void *buf, int count)
L
Linus Torvalds 已提交
646
{
647
	struct arcnet_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
648
	void __iomem *memaddr = lp->mem_start + bufnum * 512 + offset;
J
Joe Perches 已提交
649

650
	TIME(dev, "memcpy_fromio", count, memcpy_fromio(buf, memaddr, count));
L
Linus Torvalds 已提交
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
}

MODULE_LICENSE("GPL");

static int __init com90xx_init(void)
{
	if (irq == 2)
		irq = 9;
	com90xx_probe();
	if (!numcards)
		return -EIO;
	return 0;
}

static void __exit com90xx_exit(void)
{
	struct net_device *dev;
	struct arcnet_local *lp;
	int count;

	for (count = 0; count < numcards; count++) {
		dev = cards[count];
673
		lp = netdev_priv(dev);
L
Linus Torvalds 已提交
674 675 676 677 678

		unregister_netdev(dev);
		free_irq(dev->irq, dev);
		iounmap(lp->mem_start);
		release_region(dev->base_addr, ARCNET_TOTAL_SIZE);
J
Joe Perches 已提交
679 680
		release_mem_region(dev->mem_start,
				   dev->mem_end - dev->mem_start + 1);
L
Linus Torvalds 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694
		free_netdev(dev);
	}
}

module_init(com90xx_init);
module_exit(com90xx_exit);

#ifndef MODULE
static int __init com90xx_setup(char *s)
{
	int ints[8];

	s = get_options(s, 8, ints);
	if (!ints[0] && !*s) {
695
		pr_notice("Disabled\n");
L
Linus Torvalds 已提交
696 697 698 699 700
		return 1;
	}

	switch (ints[0]) {
	default:		/* ERROR */
701
		pr_err("Too many arguments\n");
L
Linus Torvalds 已提交
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
	case 3:		/* Mem address */
		shmem = ints[3];
	case 2:		/* IRQ */
		irq = ints[2];
	case 1:		/* IO address */
		io = ints[1];
	}

	if (*s)
		snprintf(device, sizeof(device), "%s", s);

	return 1;
}

__setup("com90xx=", com90xx_setup);
#endif