ax88796.c 24.7 KB
Newer Older
B
Ben Dooks 已提交
1 2 3 4 5 6 7 8 9 10 11
/* drivers/net/ax88796.c
 *
 * Copyright 2005,2007 Simtec Electronics
 *	Ben Dooks <ben@simtec.co.uk>
 *
 * Asix AX88796 10/100 Ethernet controller support
 *	Based on ne.c, by Donald Becker, et-al.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
12
 */
B
Ben Dooks 已提交
13 14 15 16 17 18 19

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/isapnp.h>
#include <linux/init.h>
#include <linux/interrupt.h>
20
#include <linux/io.h>
B
Ben Dooks 已提交
21 22 23 24 25 26 27
#include <linux/platform_device.h>
#include <linux/delay.h>
#include <linux/timer.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/mii.h>
M
Magnus Damm 已提交
28
#include <linux/eeprom_93cx6.h>
29
#include <linux/slab.h>
B
Ben Dooks 已提交
30 31 32 33 34

#include <net/ax88796.h>

#include <asm/system.h>

35
static int phy_debug;
B
Ben Dooks 已提交
36 37

/* Rename the lib8390.c functions to show that they are in this driver */
38 39 40
#define __ei_open ax_ei_open
#define __ei_close ax_ei_close
#define __ei_poll ax_ei_poll
41
#define __ei_start_xmit ax_ei_start_xmit
B
Ben Dooks 已提交
42
#define __ei_tx_timeout ax_ei_tx_timeout
43
#define __ei_get_stats ax_ei_get_stats
44
#define __ei_set_multicast_list ax_ei_set_multicast_list
45
#define __ei_interrupt ax_ei_interrupt
B
Ben Dooks 已提交
46
#define ____alloc_ei_netdev ax__alloc_ei_netdev
47
#define __NS8390_init ax_NS8390_init
B
Ben Dooks 已提交
48 49 50 51

/* force unsigned long back to 'void __iomem *' */
#define ax_convert_addr(_a) ((void __force __iomem *)(_a))

52
#define ei_inb(_a) readb(ax_convert_addr(_a))
B
Ben Dooks 已提交
53 54
#define ei_outb(_v, _a) writeb(_v, ax_convert_addr(_a))

55
#define ei_inb_p(_a) ei_inb(_a)
B
Ben Dooks 已提交
56 57 58
#define ei_outb_p(_v, _a) ei_outb(_v, _a)

/* define EI_SHIFT() to take into account our register offsets */
59
#define EI_SHIFT(x) (ei_local->reg_offset[(x)])
B
Ben Dooks 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

/* Ensure we have our RCR base value */
#define AX88796_PLATFORM

static unsigned char version[] = "ax88796.c: Copyright 2005,2007 Simtec Electronics\n";

#include "lib8390.c"

#define DRV_NAME "ax88796"
#define DRV_VERSION "1.00"

/* from ne.c */
#define NE_CMD		EI_SHIFT(0x00)
#define NE_RESET	EI_SHIFT(0x1f)
#define NE_DATAPORT	EI_SHIFT(0x10)

#define NE1SM_START_PG	0x20	/* First page of TX buffer */
77
#define NE1SM_STOP_PG	0x40	/* Last page +1 of RX ring */
B
Ben Dooks 已提交
78 79 80 81 82 83
#define NESM_START_PG	0x40	/* First page of TX buffer */
#define NESM_STOP_PG	0x80	/* Last page +1 of RX ring */

/* device private data */

struct ax_device {
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	struct timer_list mii_timer;
	spinlock_t mii_lock;
	struct mii_if_info mii;

	u32 msg_enable;
	void __iomem *map2;
	struct platform_device *dev;
	struct resource *mem;
	struct resource *mem2;
	struct ax_plat_data *plat;

	unsigned char running;
	unsigned char resume_open;
	unsigned int irqflags;

	u32 reg_offsets[0x20];
B
Ben Dooks 已提交
100 101 102 103 104
};

static inline struct ax_device *to_ax_dev(struct net_device *dev)
{
	struct ei_device *ei_local = netdev_priv(dev);
105
	return (struct ax_device *)(ei_local + 1);
B
Ben Dooks 已提交
106 107
}

108 109
/*
 * ax_initial_check
B
Ben Dooks 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
 *
 * do an initial probe for the card to check wether it exists
 * and is functional
 */
static int ax_initial_check(struct net_device *dev)
{
	struct ei_device *ei_local = netdev_priv(dev);
	void __iomem *ioaddr = ei_local->mem;
	int reg0;
	int regd;

	reg0 = ei_inb(ioaddr);
	if (reg0 == 0xFF)
		return -ENODEV;

125
	ei_outb(E8390_NODMA + E8390_PAGE1 + E8390_STOP, ioaddr + E8390_CMD);
B
Ben Dooks 已提交
126 127
	regd = ei_inb(ioaddr + 0x0d);
	ei_outb(0xff, ioaddr + 0x0d);
128
	ei_outb(E8390_NODMA + E8390_PAGE0, ioaddr + E8390_CMD);
B
Ben Dooks 已提交
129 130 131 132 133 134 135 136 137 138
	ei_inb(ioaddr + EN0_COUNTER0); /* Clear the counter by reading. */
	if (ei_inb(ioaddr + EN0_COUNTER0) != 0) {
		ei_outb(reg0, ioaddr);
		ei_outb(regd, ioaddr + 0x0d);	/* Restore the old values. */
		return -ENODEV;
	}

	return 0;
}

139 140 141 142
/*
 * Hard reset the card. This used to pause for the same period that a
 * 8390 reset command required, but that shouldn't be necessary.
 */
B
Ben Dooks 已提交
143 144 145
static void ax_reset_8390(struct net_device *dev)
{
	struct ei_device *ei_local = netdev_priv(dev);
146
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
147 148 149 150
	unsigned long reset_start_time = jiffies;
	void __iomem *addr = (void __iomem *)dev->base_addr;

	if (ei_debug > 1)
151
		dev_dbg(&ax->dev->dev, "resetting the 8390 t=%ld\n", jiffies);
B
Ben Dooks 已提交
152 153 154

	ei_outb(ei_inb(addr + NE_RESET), addr + NE_RESET);

155 156
	ei_local->txing = 0;
	ei_local->dmaing = 0;
B
Ben Dooks 已提交
157 158 159

	/* This check _should_not_ be necessary, omit eventually. */
	while ((ei_inb(addr + EN0_ISR) & ENISR_RESET) == 0) {
160
		if (jiffies - reset_start_time > 2 * HZ / 100) {
161
			dev_warn(&ax->dev->dev, "%s: %s did not complete.\n",
162
			       __func__, dev->name);
B
Ben Dooks 已提交
163 164 165 166 167 168 169 170 171 172 173 174
			break;
		}
	}

	ei_outb(ENISR_RESET, addr + EN0_ISR);	/* Ack intr. */
}


static void ax_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
			    int ring_page)
{
	struct ei_device *ei_local = netdev_priv(dev);
175
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
176 177 178
	void __iomem *nic_base = ei_local->mem;

	/* This *shouldn't* happen. If it does, it's the last thing you'll see */
179
	if (ei_local->dmaing) {
180 181
		dev_err(&ax->dev->dev, "%s: DMAing conflict in %s "
			"[DMAstat:%d][irqlock:%d].\n",
182
			dev->name, __func__,
183
			ei_local->dmaing, ei_local->irqlock);
B
Ben Dooks 已提交
184 185 186
		return;
	}

187
	ei_local->dmaing |= 0x01;
188
	ei_outb(E8390_NODMA + E8390_PAGE0 + E8390_START, nic_base + NE_CMD);
B
Ben Dooks 已提交
189 190 191 192 193 194
	ei_outb(sizeof(struct e8390_pkt_hdr), nic_base + EN0_RCNTLO);
	ei_outb(0, nic_base + EN0_RCNTHI);
	ei_outb(0, nic_base + EN0_RSARLO);		/* On page boundary */
	ei_outb(ring_page, nic_base + EN0_RSARHI);
	ei_outb(E8390_RREAD+E8390_START, nic_base + NE_CMD);

195
	if (ei_local->word16)
196 197
		readsw(nic_base + NE_DATAPORT, hdr,
		       sizeof(struct e8390_pkt_hdr) >> 1);
B
Ben Dooks 已提交
198
	else
199 200
		readsb(nic_base + NE_DATAPORT, hdr,
		       sizeof(struct e8390_pkt_hdr));
B
Ben Dooks 已提交
201 202

	ei_outb(ENISR_RDC, nic_base + EN0_ISR);	/* Ack intr. */
203
	ei_local->dmaing &= ~0x01;
B
Ben Dooks 已提交
204 205 206 207 208

	le16_to_cpus(&hdr->count);
}


209 210 211 212 213 214 215
/*
 * Block input and output, similar to the Crynwr packet driver. If
 * you are porting to a new ethercard, look at the packet driver
 * source for hints. The NEx000 doesn't share the on-board packet
 * memory -- you have to put the packet out through the "remote DMA"
 * dataport using ei_outb.
 */
B
Ben Dooks 已提交
216 217 218 219
static void ax_block_input(struct net_device *dev, int count,
			   struct sk_buff *skb, int ring_offset)
{
	struct ei_device *ei_local = netdev_priv(dev);
220
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
221 222 223
	void __iomem *nic_base = ei_local->mem;
	char *buf = skb->data;

224
	if (ei_local->dmaing) {
225 226
		dev_err(&ax->dev->dev,
			"%s: DMAing conflict in %s "
B
Ben Dooks 已提交
227
			"[DMAstat:%d][irqlock:%d].\n",
228
			dev->name, __func__,
229
			ei_local->dmaing, ei_local->irqlock);
B
Ben Dooks 已提交
230 231 232
		return;
	}

233
	ei_local->dmaing |= 0x01;
B
Ben Dooks 已提交
234

235
	ei_outb(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base + NE_CMD);
B
Ben Dooks 已提交
236 237 238 239 240 241
	ei_outb(count & 0xff, nic_base + EN0_RCNTLO);
	ei_outb(count >> 8, nic_base + EN0_RCNTHI);
	ei_outb(ring_offset & 0xff, nic_base + EN0_RSARLO);
	ei_outb(ring_offset >> 8, nic_base + EN0_RSARHI);
	ei_outb(E8390_RREAD+E8390_START, nic_base + NE_CMD);

242
	if (ei_local->word16) {
B
Ben Dooks 已提交
243 244 245 246 247 248 249 250
		readsw(nic_base + NE_DATAPORT, buf, count >> 1);
		if (count & 0x01)
			buf[count-1] = ei_inb(nic_base + NE_DATAPORT);

	} else {
		readsb(nic_base + NE_DATAPORT, buf, count);
	}

251
	ei_local->dmaing &= ~1;
B
Ben Dooks 已提交
252 253 254 255 256 257
}

static void ax_block_output(struct net_device *dev, int count,
			    const unsigned char *buf, const int start_page)
{
	struct ei_device *ei_local = netdev_priv(dev);
258
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
259 260 261
	void __iomem *nic_base = ei_local->mem;
	unsigned long dma_start;

262 263 264 265 266
	/*
	 * Round the count up for word writes. Do we need to do this?
	 * What effect will an odd byte count have on the 8390?  I
	 * should check someday.
	 */
267
	if (ei_local->word16 && (count & 0x01))
B
Ben Dooks 已提交
268 269 270
		count++;

	/* This *shouldn't* happen. If it does, it's the last thing you'll see */
271
	if (ei_local->dmaing) {
272
		dev_err(&ax->dev->dev, "%s: DMAing conflict in %s."
B
Ben Dooks 已提交
273
			"[DMAstat:%d][irqlock:%d]\n",
274
			dev->name, __func__,
275
		       ei_local->dmaing, ei_local->irqlock);
B
Ben Dooks 已提交
276 277 278
		return;
	}

279
	ei_local->dmaing |= 0x01;
B
Ben Dooks 已提交
280 281 282 283 284 285 286
	/* We should already be in page 0, but to be safe... */
	ei_outb(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base + NE_CMD);

	ei_outb(ENISR_RDC, nic_base + EN0_ISR);

	/* Now the normal output. */
	ei_outb(count & 0xff, nic_base + EN0_RCNTLO);
287
	ei_outb(count >> 8, nic_base + EN0_RCNTHI);
B
Ben Dooks 已提交
288 289 290 291
	ei_outb(0x00, nic_base + EN0_RSARLO);
	ei_outb(start_page, nic_base + EN0_RSARHI);

	ei_outb(E8390_RWRITE+E8390_START, nic_base + NE_CMD);
292
	if (ei_local->word16)
293 294
		writesw(nic_base + NE_DATAPORT, buf, count >> 1);
	else
B
Ben Dooks 已提交
295 296 297 298 299
		writesb(nic_base + NE_DATAPORT, buf, count);

	dma_start = jiffies;

	while ((ei_inb(nic_base + EN0_ISR) & ENISR_RDC) == 0) {
300
		if (jiffies - dma_start > 2 * HZ / 100) {		/* 20ms */
301 302
			dev_warn(&ax->dev->dev,
				 "%s: timeout waiting for Tx RDC.\n", dev->name);
B
Ben Dooks 已提交
303
			ax_reset_8390(dev);
304
			ax_NS8390_init(dev, 1);
B
Ben Dooks 已提交
305 306 307 308 309
			break;
		}
	}

	ei_outb(ENISR_RDC, nic_base + EN0_ISR);	/* Ack intr. */
310
	ei_local->dmaing &= ~0x01;
B
Ben Dooks 已提交
311 312 313 314 315
}

/* definitions for accessing MII/EEPROM interface */

#define AX_MEMR			EI_SHIFT(0x14)
316 317 318 319 320 321 322 323 324 325 326
#define AX_MEMR_MDC		BIT(0)
#define AX_MEMR_MDIR		BIT(1)
#define AX_MEMR_MDI		BIT(2)
#define AX_MEMR_MDO		BIT(3)
#define AX_MEMR_EECS		BIT(4)
#define AX_MEMR_EEI		BIT(5)
#define AX_MEMR_EEO		BIT(6)
#define AX_MEMR_EECLK		BIT(7)

/*
 * ax_mii_ei_outbits
B
Ben Dooks 已提交
327 328
 *
 * write the specified set of bits to the phy
329
 */
B
Ben Dooks 已提交
330 331 332
static void
ax_mii_ei_outbits(struct net_device *dev, unsigned int bits, int len)
{
333
	struct ei_device *ei_local = netdev_priv(dev);
B
Ben Dooks 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
	void __iomem *memr_addr = (void __iomem *)dev->base_addr + AX_MEMR;
	unsigned int memr;

	/* clock low, data to output mode */
	memr = ei_inb(memr_addr);
	memr &= ~(AX_MEMR_MDC | AX_MEMR_MDIR);
	ei_outb(memr, memr_addr);

	for (len--; len >= 0; len--) {
		if (bits & (1 << len))
			memr |= AX_MEMR_MDO;
		else
			memr &= ~AX_MEMR_MDO;

		ei_outb(memr, memr_addr);

		/* clock high */

		ei_outb(memr | AX_MEMR_MDC, memr_addr);
		udelay(1);

		/* clock low */
		ei_outb(memr, memr_addr);
	}

	/* leaves the clock line low, mdir input */
	memr |= AX_MEMR_MDIR;
	ei_outb(memr, (void __iomem *)dev->base_addr + AX_MEMR);
}

364 365
/*
 * ax_phy_ei_inbits
B
Ben Dooks 已提交
366 367
 *
 * read a specified number of bits from the phy
368
 */
B
Ben Dooks 已提交
369 370 371
static unsigned int
ax_phy_ei_inbits(struct net_device *dev, int no)
{
372
	struct ei_device *ei_local = netdev_priv(dev);
B
Ben Dooks 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	void __iomem *memr_addr = (void __iomem *)dev->base_addr + AX_MEMR;
	unsigned int memr;
	unsigned int result = 0;

	/* clock low, data to input mode */
	memr = ei_inb(memr_addr);
	memr &= ~AX_MEMR_MDC;
	memr |= AX_MEMR_MDIR;
	ei_outb(memr, memr_addr);

	for (no--; no >= 0; no--) {
		ei_outb(memr | AX_MEMR_MDC, memr_addr);

		udelay(1);

		if (ei_inb(memr_addr) & AX_MEMR_MDI)
389
			result |= (1 << no);
B
Ben Dooks 已提交
390 391 392 393 394 395 396

		ei_outb(memr, memr_addr);
	}

	return result;
}

397 398
/*
 * ax_phy_issueaddr
B
Ben Dooks 已提交
399 400 401
 *
 * use the low level bit shifting routines to send the address
 * and command to the specified phy
402
 */
B
Ben Dooks 已提交
403 404 405 406 407
static void
ax_phy_issueaddr(struct net_device *dev, int phy_addr, int reg, int opc)
{
	if (phy_debug)
		pr_debug("%s: dev %p, %04x, %04x, %d\n",
408
			__func__, dev, phy_addr, reg, opc);
B
Ben Dooks 已提交
409 410 411 412 413 414 415 416 417 418 419

	ax_mii_ei_outbits(dev, 0x3f, 6);	/* pre-amble */
	ax_mii_ei_outbits(dev, 1, 2);		/* frame-start */
	ax_mii_ei_outbits(dev, opc, 2);		/* op code */
	ax_mii_ei_outbits(dev, phy_addr, 5);	/* phy address */
	ax_mii_ei_outbits(dev, reg, 5);		/* reg address */
}

static int
ax_phy_read(struct net_device *dev, int phy_addr, int reg)
{
420
	struct ei_device *ei_local = netdev_priv(dev);
B
Ben Dooks 已提交
421
	unsigned long flags;
422
	unsigned int result;
B
Ben Dooks 已提交
423

424
	spin_lock_irqsave(&ei_local->page_lock, flags);
B
Ben Dooks 已提交
425 426 427 428

	ax_phy_issueaddr(dev, phy_addr, reg, 2);

	result = ax_phy_ei_inbits(dev, 17);
429
	result &= ~(3 << 16);
B
Ben Dooks 已提交
430

431
	spin_unlock_irqrestore(&ei_local->page_lock, flags);
B
Ben Dooks 已提交
432 433

	if (phy_debug)
434
		pr_debug("%s: %04x.%04x => read %04x\n", __func__,
B
Ben Dooks 已提交
435 436 437 438 439 440 441 442
			 phy_addr, reg, result);

	return result;
}

static void
ax_phy_write(struct net_device *dev, int phy_addr, int reg, int value)
{
443
	struct ei_device *ei = netdev_priv(dev);
444
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
445 446
	unsigned long flags;

447
	dev_dbg(&ax->dev->dev, "%s: %p, %04x, %04x %04x\n",
448
		__func__, dev, phy_addr, reg, value);
B
Ben Dooks 已提交
449

450
	spin_lock_irqsave(&ei->page_lock, flags);
B
Ben Dooks 已提交
451 452 453 454 455

	ax_phy_issueaddr(dev, phy_addr, reg, 1);
	ax_mii_ei_outbits(dev, 2, 2);		/* send TA */
	ax_mii_ei_outbits(dev, value, 16);

456
	spin_unlock_irqrestore(&ei->page_lock, flags);
B
Ben Dooks 已提交
457 458 459 460 461
}

static void ax_mii_expiry(unsigned long data)
{
	struct net_device *dev = (struct net_device *)data;
462
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476
	unsigned long flags;

	spin_lock_irqsave(&ax->mii_lock, flags);
	mii_check_media(&ax->mii, netif_msg_link(ax), 0);
	spin_unlock_irqrestore(&ax->mii_lock, flags);

	if (ax->running) {
		ax->mii_timer.expires = jiffies + HZ*2;
		add_timer(&ax->mii_timer);
	}
}

static int ax_open(struct net_device *dev)
{
477
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
478 479 480
	struct ei_device *ei_local = netdev_priv(dev);
	int ret;

481
	dev_dbg(&ax->dev->dev, "%s: open\n", dev->name);
B
Ben Dooks 已提交
482

483 484
	ret = request_irq(dev->irq, ax_ei_interrupt, ax->irqflags,
			  dev->name, dev);
B
Ben Dooks 已提交
485 486 487 488
	if (ret)
		return ret;

	ret = ax_ei_open(dev);
K
Kulikov Vasiliy 已提交
489 490
	if (ret) {
		free_irq(dev->irq, dev);
B
Ben Dooks 已提交
491
		return ret;
K
Kulikov Vasiliy 已提交
492
	}
B
Ben Dooks 已提交
493 494 495 496 497 498 499 500 501 502

	/* turn the phy on (if turned off) */

	ei_outb(ax->plat->gpoc_val, ei_local->mem + EI_SHIFT(0x17));
	ax->running = 1;

	/* start the MII timer */

	init_timer(&ax->mii_timer);

503 504
	ax->mii_timer.expires = jiffies + 1;
	ax->mii_timer.data = (unsigned long) dev;
B
Ben Dooks 已提交
505 506 507 508 509 510 511 512 513 514 515 516
	ax->mii_timer.function = ax_mii_expiry;

	add_timer(&ax->mii_timer);

	return 0;
}

static int ax_close(struct net_device *dev)
{
	struct ax_device *ax = to_ax_dev(dev);
	struct ei_device *ei_local = netdev_priv(dev);

517
	dev_dbg(&ax->dev->dev, "%s: close\n", dev->name);
B
Ben Dooks 已提交
518 519 520

	/* turn the phy off */

521
	ei_outb(ax->plat->gpoc_val | (1 << 6),
B
Ben Dooks 已提交
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
	       ei_local->mem + EI_SHIFT(0x17));

	ax->running = 0;
	wmb();

	del_timer_sync(&ax->mii_timer);
	ax_ei_close(dev);

	free_irq(dev->irq, dev);
	return 0;
}

static int ax_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
{
	struct ax_device *ax = to_ax_dev(dev);
	unsigned long flags;
	int rc;

	if (!netif_running(dev))
		return -EINVAL;

	spin_lock_irqsave(&ax->mii_lock, flags);
	rc = generic_mii_ioctl(&ax->mii, if_mii(req), cmd, NULL);
	spin_unlock_irqrestore(&ax->mii_lock, flags);

	return rc;
}

/* ethtool ops */

static void ax_get_drvinfo(struct net_device *dev,
			   struct ethtool_drvinfo *info)
{
	struct ax_device *ax = to_ax_dev(dev);

	strcpy(info->driver, DRV_NAME);
	strcpy(info->version, DRV_VERSION);
	strcpy(info->bus_info, ax->dev->name);
}

static int ax_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
{
	struct ax_device *ax = to_ax_dev(dev);
	unsigned long flags;

	spin_lock_irqsave(&ax->mii_lock, flags);
	mii_ethtool_gset(&ax->mii, cmd);
569
	spin_unlock_irqrestore(&ax->mii_lock, flags);
B
Ben Dooks 已提交
570 571 572 573 574 575 576 577 578 579 580 581

	return 0;
}

static int ax_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
{
	struct ax_device *ax = to_ax_dev(dev);
	unsigned long flags;
	int rc;

	spin_lock_irqsave(&ax->mii_lock, flags);
	rc = mii_ethtool_sset(&ax->mii, cmd);
582
	spin_unlock_irqrestore(&ax->mii_lock, flags);
B
Ben Dooks 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606

	return rc;
}

static int ax_nway_reset(struct net_device *dev)
{
	struct ax_device *ax = to_ax_dev(dev);
	return mii_nway_restart(&ax->mii);
}

static u32 ax_get_link(struct net_device *dev)
{
	struct ax_device *ax = to_ax_dev(dev);
	return mii_link_ok(&ax->mii);
}

static const struct ethtool_ops ax_ethtool_ops = {
	.get_drvinfo		= ax_get_drvinfo,
	.get_settings		= ax_get_settings,
	.set_settings		= ax_set_settings,
	.nway_reset		= ax_nway_reset,
	.get_link		= ax_get_link,
};

M
Magnus Damm 已提交
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
#ifdef CONFIG_AX88796_93CX6
static void ax_eeprom_register_read(struct eeprom_93cx6 *eeprom)
{
	struct ei_device *ei_local = eeprom->data;
	u8 reg = ei_inb(ei_local->mem + AX_MEMR);

	eeprom->reg_data_in = reg & AX_MEMR_EEI;
	eeprom->reg_data_out = reg & AX_MEMR_EEO; /* Input pin */
	eeprom->reg_data_clock = reg & AX_MEMR_EECLK;
	eeprom->reg_chip_select = reg & AX_MEMR_EECS;
}

static void ax_eeprom_register_write(struct eeprom_93cx6 *eeprom)
{
	struct ei_device *ei_local = eeprom->data;
	u8 reg = ei_inb(ei_local->mem + AX_MEMR);

	reg &= ~(AX_MEMR_EEI | AX_MEMR_EECLK | AX_MEMR_EECS);

	if (eeprom->reg_data_in)
		reg |= AX_MEMR_EEI;
	if (eeprom->reg_data_clock)
		reg |= AX_MEMR_EECLK;
	if (eeprom->reg_chip_select)
		reg |= AX_MEMR_EECS;

	ei_outb(reg, ei_local->mem + AX_MEMR);
	udelay(10);
}
#endif

638 639 640 641 642 643 644 645 646 647
static const struct net_device_ops ax_netdev_ops = {
	.ndo_open		= ax_open,
	.ndo_stop		= ax_close,
	.ndo_do_ioctl		= ax_ioctl,

	.ndo_start_xmit		= ax_ei_start_xmit,
	.ndo_tx_timeout		= ax_ei_tx_timeout,
	.ndo_get_stats		= ax_ei_get_stats,
	.ndo_set_multicast_list = ax_ei_set_multicast_list,
	.ndo_validate_addr	= eth_validate_addr,
648
	.ndo_set_mac_address	= eth_mac_addr,
649 650 651 652 653 654
	.ndo_change_mtu		= eth_change_mtu,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= ax_ei_poll,
#endif
};

B
Ben Dooks 已提交
655 656 657 658 659 660 661
/* setup code */

static void ax_initial_setup(struct net_device *dev, struct ei_device *ei_local)
{
	void __iomem *ioaddr = ei_local->mem;
	struct ax_device *ax = to_ax_dev(dev);

662 663
	/* Select page 0 */
	ei_outb(E8390_NODMA + E8390_PAGE0 + E8390_STOP, ioaddr + E8390_CMD);
B
Ben Dooks 已提交
664 665 666 667 668 669

	/* set to byte access */
	ei_outb(ax->plat->dcr_val & ~1, ioaddr + EN0_DCFG);
	ei_outb(ax->plat->gpoc_val, ioaddr + EI_SHIFT(0x17));
}

670 671
/*
 * ax_init_dev
B
Ben Dooks 已提交
672 673 674 675 676 677
 *
 * initialise the specified device, taking care to note the MAC
 * address it may already have (if configured), ensure
 * the device is ready to be used by lib8390.c and registerd with
 * the network layer.
 */
678
static int ax_init_dev(struct net_device *dev)
B
Ben Dooks 已提交
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
{
	struct ei_device *ei_local = netdev_priv(dev);
	struct ax_device *ax = to_ax_dev(dev);
	void __iomem *ioaddr = ei_local->mem;
	unsigned int start_page;
	unsigned int stop_page;
	int ret;
	int i;

	ret = ax_initial_check(dev);
	if (ret)
		goto err_out;

	/* setup goes here */

	ax_initial_setup(dev, ei_local);

	/* read the mac from the card prom if we need it */

698
	if (ax->plat->flags & AXFLG_HAS_EEPROM) {
B
Ben Dooks 已提交
699 700
		unsigned char SA_prom[32];

701
		for (i = 0; i < sizeof(SA_prom); i += 2) {
B
Ben Dooks 已提交
702
			SA_prom[i] = ei_inb(ioaddr + NE_DATAPORT);
703
			SA_prom[i + 1] = ei_inb(ioaddr + NE_DATAPORT);
B
Ben Dooks 已提交
704 705 706 707 708 709
		}

		if (ax->plat->wordlength == 2)
			for (i = 0; i < 16; i++)
				SA_prom[i] = SA_prom[i+i];

710
		memcpy(dev->dev_addr, SA_prom, 6);
B
Ben Dooks 已提交
711 712
	}

M
Magnus Damm 已提交
713
#ifdef CONFIG_AX88796_93CX6
714
	if (ax->plat->flags & AXFLG_HAS_93CX6) {
M
Magnus Damm 已提交
715 716 717 718 719 720 721 722 723 724 725 726
		unsigned char mac_addr[6];
		struct eeprom_93cx6 eeprom;

		eeprom.data = ei_local;
		eeprom.register_read = ax_eeprom_register_read;
		eeprom.register_write = ax_eeprom_register_write;
		eeprom.width = PCI_EEPROM_WIDTH_93C56;

		eeprom_93cx6_multiread(&eeprom, 0,
				       (__le16 __force *)mac_addr,
				       sizeof(mac_addr) >> 1);

727
		memcpy(dev->dev_addr, mac_addr, 6);
M
Magnus Damm 已提交
728 729
	}
#endif
B
Ben Dooks 已提交
730 731 732 733 734 735 736 737 738 739
	if (ax->plat->wordlength == 2) {
		/* We must set the 8390 for word mode. */
		ei_outb(ax->plat->dcr_val, ei_local->mem + EN0_DCFG);
		start_page = NESM_START_PG;
		stop_page = NESM_STOP_PG;
	} else {
		start_page = NE1SM_START_PG;
		stop_page = NE1SM_STOP_PG;
	}

740 741 742 743 744 745 746
	/* load the mac-address from the device */
	if (ax->plat->flags & AXFLG_MAC_FROMDEV) {
		ei_outb(E8390_NODMA + E8390_PAGE1 + E8390_STOP,
			ei_local->mem + E8390_CMD); /* 0x61 */
		for (i = 0; i < ETHER_ADDR_LEN; i++)
			dev->dev_addr[i] =
				ei_inb(ioaddr + EN1_PHYS_SHIFT(i));
B
Ben Dooks 已提交
747 748
	}

749 750 751 752 753
	if ((ax->plat->flags & AXFLG_MAC_FROMPLATFORM) &&
	    ax->plat->mac_addr)
		memcpy(dev->dev_addr, ax->plat->mac_addr,
		       ETHER_ADDR_LEN);

B
Ben Dooks 已提交
754 755
	ax_reset_8390(dev);

756 757 758 759 760
	ei_local->name = "AX88796";
	ei_local->tx_start_page = start_page;
	ei_local->stop_page = stop_page;
	ei_local->word16 = (ax->plat->wordlength == 2);
	ei_local->rx_start_page = start_page + TX_PAGES;
B
Ben Dooks 已提交
761 762

#ifdef PACKETBUF_MEMSIZE
763
	/* Allow the packet buffer size to be overridden by know-it-alls. */
764
	ei_local->stop_page = ei_local->tx_start_page + PACKETBUF_MEMSIZE;
B
Ben Dooks 已提交
765 766
#endif

767 768 769 770 771
	ei_local->reset_8390 = &ax_reset_8390;
	ei_local->block_input = &ax_block_input;
	ei_local->block_output = &ax_block_output;
	ei_local->get_8390_hdr = &ax_get_8390_hdr;
	ei_local->priv = 0;
B
Ben Dooks 已提交
772

773 774
	dev->netdev_ops = &ax_netdev_ops;
	dev->ethtool_ops = &ax_ethtool_ops;
B
Ben Dooks 已提交
775 776 777 778 779 780 781 782 783 784 785 786 787

	ax->msg_enable		= NETIF_MSG_LINK;
	ax->mii.phy_id_mask	= 0x1f;
	ax->mii.reg_num_mask	= 0x1f;
	ax->mii.phy_id		= 0x10;		/* onboard phy */
	ax->mii.force_media	= 0;
	ax->mii.full_duplex	= 0;
	ax->mii.mdio_read	= ax_phy_read;
	ax->mii.mdio_write	= ax_phy_write;
	ax->mii.dev		= dev;

	ax_NS8390_init(dev, 0);

788 789 790
	dev_info(&ax->dev->dev, "%dbit, irq %d, %lx, MAC: %pM\n",
		 ei_local->word16 ? 16 : 8, dev->irq, dev->base_addr,
		 dev->dev_addr);
B
Ben Dooks 已提交
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807

	ret = register_netdev(dev);
	if (ret)
		goto out_irq;

	return 0;

 out_irq:
	/* cleanup irq */
	free_irq(dev->irq, dev);
 err_out:
	return ret;
}

static int ax_remove(struct platform_device *_dev)
{
	struct net_device *dev = platform_get_drvdata(_dev);
808
	struct ei_device *ei_local = netdev_priv(dev);
809
	struct ax_device *ax;
B
Ben Dooks 已提交
810 811 812 813 814 815

	ax = to_ax_dev(dev);

	unregister_netdev(dev);
	free_irq(dev->irq, dev);

816
	iounmap(ei_local->mem);
B
Ben Dooks 已提交
817 818 819 820 821 822 823 824 825 826 827 828 829 830
	release_resource(ax->mem);
	kfree(ax->mem);

	if (ax->map2) {
		iounmap(ax->map2);
		release_resource(ax->mem2);
		kfree(ax->mem2);
	}

	free_netdev(dev);

	return 0;
}

831 832
/*
 * ax_probe
B
Ben Dooks 已提交
833 834
 *
 * This is the entry point when the platform device system uses to
835 836 837
 * notify us of a new device to attach to. Allocate memory, find the
 * resources and information passed, and map the necessary registers.
 */
B
Ben Dooks 已提交
838 839 840
static int ax_probe(struct platform_device *pdev)
{
	struct net_device *dev;
841
	struct ei_device *ei_local;
842 843
	struct ax_device *ax;
	struct resource *res;
B
Ben Dooks 已提交
844
	size_t size;
845
	int ret = 0;
B
Ben Dooks 已提交
846 847 848 849 850 851

	dev = ax__alloc_ei_netdev(sizeof(struct ax_device));
	if (dev == NULL)
		return -ENOMEM;

	/* ok, let's setup our device */
852
	ei_local = netdev_priv(dev);
B
Ben Dooks 已提交
853 854 855 856 857 858 859 860
	ax = to_ax_dev(dev);

	spin_lock_init(&ax->mii_lock);

	ax->dev = pdev;
	ax->plat = pdev->dev.platform_data;
	platform_set_drvdata(pdev, dev);

861
	ei_local->rxcr_base = ax->plat->rcr_val;
B
Ben Dooks 已提交
862 863

	/* find the platform resources */
864 865
	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (res == NULL) {
B
Ben Dooks 已提交
866
		dev_err(&pdev->dev, "no IRQ specified\n");
867
		ret = -ENXIO;
B
Ben Dooks 已提交
868 869
		goto exit_mem;
	}
870 871 872

	dev->irq = res->start;
	ax->irqflags = res->flags & IRQF_TRIGGER_MASK;
B
Ben Dooks 已提交
873 874 875 876 877 878 879 880 881 882

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res == NULL) {
		dev_err(&pdev->dev, "no MEM specified\n");
		ret = -ENXIO;
		goto exit_mem;
	}

	size = (res->end - res->start) + 1;

883 884 885 886
	/*
	 * setup the register offsets from either the platform data or
	 * by using the size of the resource provided
	 */
B
Ben Dooks 已提交
887
	if (ax->plat->reg_offsets)
888
		ei_local->reg_offset = ax->plat->reg_offsets;
B
Ben Dooks 已提交
889
	else {
890
		ei_local->reg_offset = ax->reg_offsets;
B
Ben Dooks 已提交
891 892 893 894 895 896 897
		for (ret = 0; ret < 0x18; ret++)
			ax->reg_offsets[ret] = (size / 0x18) * ret;
	}

	ax->mem = request_mem_region(res->start, size, pdev->name);
	if (ax->mem == NULL) {
		dev_err(&pdev->dev, "cannot reserve registers\n");
898
		ret = -ENXIO;
B
Ben Dooks 已提交
899 900 901
		goto exit_mem;
	}

902 903
	ei_local->mem = ioremap(res->start, size);
	dev->base_addr = (unsigned long)ei_local->mem;
B
Ben Dooks 已提交
904

905
	if (ei_local->mem == NULL) {
A
Andrew Morton 已提交
906 907 908
		dev_err(&pdev->dev, "Cannot ioremap area (%08llx,%08llx)\n",
			(unsigned long long)res->start,
			(unsigned long long)res->end);
B
Ben Dooks 已提交
909

910
		ret = -ENXIO;
B
Ben Dooks 已提交
911 912 913 914 915 916 917 918 919 920 921 922 923 924
		goto exit_req;
	}

	/* look for reset area */

	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (res == NULL) {
		if (!ax->plat->reg_offsets) {
			for (ret = 0; ret < 0x20; ret++)
				ax->reg_offsets[ret] = (size / 0x20) * ret;
		}

		ax->map2 = NULL;
	} else {
925
		size = (res->end - res->start) + 1;
B
Ben Dooks 已提交
926 927

		ax->mem2 = request_mem_region(res->start, size, pdev->name);
J
Julia Lawall 已提交
928
		if (ax->mem2 == NULL) {
B
Ben Dooks 已提交
929 930 931 932 933 934 935
			dev_err(&pdev->dev, "cannot reserve registers\n");
			ret = -ENXIO;
			goto exit_mem1;
		}

		ax->map2 = ioremap(res->start, size);
		if (ax->map2 == NULL) {
936
			dev_err(&pdev->dev, "cannot map reset register\n");
B
Ben Dooks 已提交
937 938 939 940
			ret = -ENXIO;
			goto exit_mem2;
		}

941
		ei_local->reg_offset[0x1f] = ax->map2 - ei_local->mem;
B
Ben Dooks 已提交
942 943 944 945
	}

	/* got resources, now initialise and register device */

946
	ret = ax_init_dev(dev);
B
Ben Dooks 已提交
947 948 949 950 951 952 953 954 955 956 957 958 959
	if (!ret)
		return 0;

	if (ax->map2 == NULL)
		goto exit_mem1;

	iounmap(ax->map2);

 exit_mem2:
	release_resource(ax->mem2);
	kfree(ax->mem2);

 exit_mem1:
960
	iounmap(ei_local->mem);
B
Ben Dooks 已提交
961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977

 exit_req:
	release_resource(ax->mem);
	kfree(ax->mem);

 exit_mem:
	free_netdev(dev);

	return ret;
}

/* suspend and resume */

#ifdef CONFIG_PM
static int ax_suspend(struct platform_device *dev, pm_message_t state)
{
	struct net_device *ndev = platform_get_drvdata(dev);
978
	struct ax_device *ax = to_ax_dev(ndev);
B
Ben Dooks 已提交
979 980 981 982 983 984 985 986 987 988 989 990

	ax->resume_open = ax->running;

	netif_device_detach(ndev);
	ax_close(ndev);

	return 0;
}

static int ax_resume(struct platform_device *pdev)
{
	struct net_device *ndev = platform_get_drvdata(pdev);
991
	struct ax_device *ax = to_ax_dev(ndev);
B
Ben Dooks 已提交
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004

	ax_initial_setup(ndev, netdev_priv(ndev));
	ax_NS8390_init(ndev, ax->resume_open);
	netif_device_attach(ndev);

	if (ax->resume_open)
		ax_open(ndev);

	return 0;
}

#else
#define ax_suspend NULL
1005
#define ax_resume NULL
B
Ben Dooks 已提交
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
#endif

static struct platform_driver axdrv = {
	.driver	= {
		.name		= "ax88796",
		.owner		= THIS_MODULE,
	},
	.probe		= ax_probe,
	.remove		= ax_remove,
	.suspend	= ax_suspend,
	.resume		= ax_resume,
};

static int __init axdrv_init(void)
{
	return platform_driver_register(&axdrv);
}

static void __exit axdrv_exit(void)
{
	platform_driver_unregister(&axdrv);
}

module_init(axdrv_init);
module_exit(axdrv_exit);

MODULE_DESCRIPTION("AX88796 10/100 Ethernet platform driver");
MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
MODULE_LICENSE("GPL v2");
1035
MODULE_ALIAS("platform:ax88796");