ax88796.c 23.7 KB
Newer Older
1
/* drivers/net/ethernet/8390/ax88796.c
B
Ben Dooks 已提交
2 3 4 5 6 7 8 9 10 11
 *
 * 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
#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>
27 28
#include <linux/mdio-bitbang.h>
#include <linux/phy.h>
M
Magnus Damm 已提交
29
#include <linux/eeprom_93cx6.h>
30
#include <linux/slab.h>
B
Ben Dooks 已提交
31 32 33 34 35

#include <net/ax88796.h>


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

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

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

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

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

/* 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 */
75
#define NE1SM_STOP_PG	0x40	/* Last page +1 of RX ring */
B
Ben Dooks 已提交
76 77 78
#define NESM_START_PG	0x40	/* First page of TX buffer */
#define NESM_STOP_PG	0x80	/* Last page +1 of RX ring */

79 80
#define AX_GPOC_PPDSET	BIT(6)

B
Ben Dooks 已提交
81 82 83
/* device private data */

struct ax_device {
84 85 86 87 88 89 90 91
	struct mii_bus *mii_bus;
	struct mdiobb_ctrl bb_ctrl;
	struct phy_device *phy_dev;
	void __iomem *addr_memr;
	u8 reg_memr;
	int link;
	int speed;
	int duplex;
92 93

	void __iomem *map2;
94
	const struct ax_plat_data *plat;
95 96 97 98 99 100

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

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

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

109 110
/*
 * ax_initial_check
B
Ben Dooks 已提交
111
 *
112
 * do an initial probe for the card to check whether it exists
B
Ben Dooks 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125
 * 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;

126
	ei_outb(E8390_NODMA + E8390_PAGE1 + E8390_STOP, ioaddr + E8390_CMD);
B
Ben Dooks 已提交
127 128
	regd = ei_inb(ioaddr + 0x0d);
	ei_outb(0xff, ioaddr + 0x0d);
129
	ei_outb(E8390_NODMA + E8390_PAGE0, ioaddr + E8390_CMD);
B
Ben Dooks 已提交
130 131 132 133 134 135 136 137 138 139
	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;
}

140 141 142 143
/*
 * 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 已提交
144 145 146 147 148 149 150
static void ax_reset_8390(struct net_device *dev)
{
	struct ei_device *ei_local = netdev_priv(dev);
	unsigned long reset_start_time = jiffies;
	void __iomem *addr = (void __iomem *)dev->base_addr;

	if (ei_debug > 1)
151
		netdev_dbg(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
			netdev_warn(dev, "%s: did not complete.\n", __func__);
B
Ben Dooks 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
			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);
	void __iomem *nic_base = ei_local->mem;

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

185
	ei_local->dmaing |= 0x01;
186
	ei_outb(E8390_NODMA + E8390_PAGE0 + E8390_START, nic_base + NE_CMD);
B
Ben Dooks 已提交
187 188 189 190 191 192
	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);

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

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

	le16_to_cpus(&hdr->count);
}


207 208 209 210 211 212 213
/*
 * 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 已提交
214 215 216 217 218 219 220
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);
	void __iomem *nic_base = ei_local->mem;
	char *buf = skb->data;

221
	if (ei_local->dmaing) {
222 223
		netdev_err(dev,
			"DMAing conflict in %s "
B
Ben Dooks 已提交
224
			"[DMAstat:%d][irqlock:%d].\n",
225
			__func__,
226
			ei_local->dmaing, ei_local->irqlock);
B
Ben Dooks 已提交
227 228 229
		return;
	}

230
	ei_local->dmaing |= 0x01;
B
Ben Dooks 已提交
231

232
	ei_outb(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base + NE_CMD);
B
Ben Dooks 已提交
233 234 235 236 237 238
	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);

239
	if (ei_local->word16) {
B
Ben Dooks 已提交
240 241 242 243 244 245 246 247
		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);
	}

248
	ei_local->dmaing &= ~1;
B
Ben Dooks 已提交
249 250 251 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);
	void __iomem *nic_base = ei_local->mem;
	unsigned long dma_start;

258 259 260 261 262
	/*
	 * 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.
	 */
263
	if (ei_local->word16 && (count & 0x01))
B
Ben Dooks 已提交
264 265 266
		count++;

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

275
	ei_local->dmaing |= 0x01;
B
Ben Dooks 已提交
276 277 278 279 280 281 282
	/* 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);
283
	ei_outb(count >> 8, nic_base + EN0_RCNTHI);
B
Ben Dooks 已提交
284 285 286 287
	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);
288
	if (ei_local->word16)
289 290
		writesw(nic_base + NE_DATAPORT, buf, count >> 1);
	else
B
Ben Dooks 已提交
291 292 293 294 295
		writesb(nic_base + NE_DATAPORT, buf, count);

	dma_start = jiffies;

	while ((ei_inb(nic_base + EN0_ISR) & ENISR_RDC) == 0) {
296
		if (jiffies - dma_start > 2 * HZ / 100) {		/* 20ms */
297
			netdev_warn(dev, "timeout waiting for Tx RDC.\n");
B
Ben Dooks 已提交
298
			ax_reset_8390(dev);
299
			ax_NS8390_init(dev, 1);
B
Ben Dooks 已提交
300 301 302 303 304
			break;
		}
	}

	ei_outb(ENISR_RDC, nic_base + EN0_ISR);	/* Ack intr. */
305
	ei_local->dmaing &= ~0x01;
B
Ben Dooks 已提交
306 307 308 309 310
}

/* definitions for accessing MII/EEPROM interface */

#define AX_MEMR			EI_SHIFT(0x14)
311 312 313 314 315 316 317 318 319
#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)

320
static void ax_handle_link_change(struct net_device *dev)
B
Ben Dooks 已提交
321
{
322 323 324
	struct ax_device  *ax = to_ax_dev(dev);
	struct phy_device *phy_dev = ax->phy_dev;
	int status_change = 0;
B
Ben Dooks 已提交
325

326 327
	if (phy_dev->link && ((ax->speed != phy_dev->speed) ||
			     (ax->duplex != phy_dev->duplex))) {
B
Ben Dooks 已提交
328

329 330 331
		ax->speed = phy_dev->speed;
		ax->duplex = phy_dev->duplex;
		status_change = 1;
B
Ben Dooks 已提交
332 333
	}

334 335 336 337 338 339
	if (phy_dev->link != ax->link) {
		if (!phy_dev->link) {
			ax->speed = 0;
			ax->duplex = -1;
		}
		ax->link = phy_dev->link;
B
Ben Dooks 已提交
340

341
		status_change = 1;
B
Ben Dooks 已提交
342 343
	}

344 345
	if (status_change)
		phy_print_status(phy_dev);
B
Ben Dooks 已提交
346 347
}

348
static int ax_mii_probe(struct net_device *dev)
B
Ben Dooks 已提交
349
{
350 351 352
	struct ax_device  *ax = to_ax_dev(dev);
	struct phy_device *phy_dev = NULL;
	int ret;
B
Ben Dooks 已提交
353

354 355 356 357 358 359
	/* find the first phy */
	phy_dev = phy_find_first(ax->mii_bus);
	if (!phy_dev) {
		netdev_err(dev, "no PHY found\n");
		return -ENODEV;
	}
B
Ben Dooks 已提交
360

361 362 363 364 365 366
	ret = phy_connect_direct(dev, phy_dev, ax_handle_link_change, 0,
				 PHY_INTERFACE_MODE_MII);
	if (ret) {
		netdev_err(dev, "Could not attach to PHY\n");
		return ret;
	}
B
Ben Dooks 已提交
367

368 369 370
	/* mask with MAC supported features */
	phy_dev->supported &= PHY_BASIC_FEATURES;
	phy_dev->advertising = phy_dev->supported;
B
Ben Dooks 已提交
371

372
	ax->phy_dev = phy_dev;
B
Ben Dooks 已提交
373

374 375
	netdev_info(dev, "PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
		    phy_dev->drv->name, dev_name(&phy_dev->dev), phy_dev->irq);
B
Ben Dooks 已提交
376

377
	return 0;
B
Ben Dooks 已提交
378 379
}

380
static void ax_phy_switch(struct net_device *dev, int on)
B
Ben Dooks 已提交
381
{
382
	struct ei_device *ei_local = netdev_priv(dev);
383
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
384

385
	u8 reg_gpoc =  ax->plat->gpoc_val;
B
Ben Dooks 已提交
386

387 388 389 390 391 392
	if (!!on)
		reg_gpoc &= ~AX_GPOC_PPDSET;
	else
		reg_gpoc |= AX_GPOC_PPDSET;

	ei_outb(reg_gpoc, ei_local->mem + EI_SHIFT(0x17));
B
Ben Dooks 已提交
393 394 395 396
}

static int ax_open(struct net_device *dev)
{
397
	struct ax_device *ax = to_ax_dev(dev);
B
Ben Dooks 已提交
398 399
	int ret;

400
	netdev_dbg(dev, "open\n");
B
Ben Dooks 已提交
401

402 403
	ret = request_irq(dev->irq, ax_ei_interrupt, ax->irqflags,
			  dev->name, dev);
B
Ben Dooks 已提交
404
	if (ret)
405
		goto failed_request_irq;
B
Ben Dooks 已提交
406 407

	/* turn the phy on (if turned off) */
408
	ax_phy_switch(dev, 1);
B
Ben Dooks 已提交
409

410 411 412 413
	ret = ax_mii_probe(dev);
	if (ret)
		goto failed_mii_probe;
	phy_start(ax->phy_dev);
B
Ben Dooks 已提交
414

415 416 417
	ret = ax_ei_open(dev);
	if (ret)
		goto failed_ax_ei_open;
B
Ben Dooks 已提交
418

419
	ax->running = 1;
B
Ben Dooks 已提交
420 421

	return 0;
422 423 424 425 426 427 428 429

 failed_ax_ei_open:
	phy_disconnect(ax->phy_dev);
 failed_mii_probe:
	ax_phy_switch(dev, 0);
	free_irq(dev->irq, dev);
 failed_request_irq:
	return ret;
B
Ben Dooks 已提交
430 431 432 433 434 435
}

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

436
	netdev_dbg(dev, "close\n");
B
Ben Dooks 已提交
437 438 439 440 441 442

	ax->running = 0;
	wmb();

	ax_ei_close(dev);

443 444 445 446
	/* turn the phy off */
	ax_phy_switch(dev, 0);
	phy_disconnect(ax->phy_dev);

B
Ben Dooks 已提交
447 448 449 450 451 452 453
	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);
454
	struct phy_device *phy_dev = ax->phy_dev;
B
Ben Dooks 已提交
455 456 457 458

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

459 460
	if (!phy_dev)
		return -ENODEV;
B
Ben Dooks 已提交
461

462
	return phy_mii_ioctl(phy_dev, req, cmd);
B
Ben Dooks 已提交
463 464 465 466 467 468 469
}

/* ethtool ops */

static void ax_get_drvinfo(struct net_device *dev,
			   struct ethtool_drvinfo *info)
{
470
	struct platform_device *pdev = to_platform_device(dev->dev.parent);
B
Ben Dooks 已提交
471 472 473

	strcpy(info->driver, DRV_NAME);
	strcpy(info->version, DRV_VERSION);
474
	strcpy(info->bus_info, pdev->name);
B
Ben Dooks 已提交
475 476 477 478 479
}

static int ax_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
{
	struct ax_device *ax = to_ax_dev(dev);
480
	struct phy_device *phy_dev = ax->phy_dev;
B
Ben Dooks 已提交
481

482 483
	if (!phy_dev)
		return -ENODEV;
B
Ben Dooks 已提交
484

485
	return phy_ethtool_gset(phy_dev, cmd);
B
Ben Dooks 已提交
486 487 488 489 490
}

static int ax_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
{
	struct ax_device *ax = to_ax_dev(dev);
491
	struct phy_device *phy_dev = ax->phy_dev;
B
Ben Dooks 已提交
492

493 494
	if (!phy_dev)
		return -ENODEV;
B
Ben Dooks 已提交
495

496
	return phy_ethtool_sset(phy_dev, cmd);
B
Ben Dooks 已提交
497 498 499 500 501 502
}

static const struct ethtool_ops ax_ethtool_ops = {
	.get_drvinfo		= ax_get_drvinfo,
	.get_settings		= ax_get_settings,
	.set_settings		= ax_set_settings,
503
	.get_link		= ethtool_op_get_link,
504
	.get_ts_info		= ethtool_op_get_ts_info,
B
Ben Dooks 已提交
505 506
};

M
Magnus Damm 已提交
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
#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

538 539 540 541 542 543 544 545
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,
546
	.ndo_set_rx_mode	= ax_ei_set_multicast_list,
547
	.ndo_validate_addr	= eth_validate_addr,
548
	.ndo_set_mac_address	= eth_mac_addr,
549 550 551 552 553 554
	.ndo_change_mtu		= eth_change_mtu,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= ax_ei_poll,
#endif
};

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 593 594 595 596 597 598 599 600 601 602 603 604 605 606
static void ax_bb_mdc(struct mdiobb_ctrl *ctrl, int level)
{
	struct ax_device *ax = container_of(ctrl, struct ax_device, bb_ctrl);

	if (level)
		ax->reg_memr |= AX_MEMR_MDC;
	else
		ax->reg_memr &= ~AX_MEMR_MDC;

	ei_outb(ax->reg_memr, ax->addr_memr);
}

static void ax_bb_dir(struct mdiobb_ctrl *ctrl, int output)
{
	struct ax_device *ax = container_of(ctrl, struct ax_device, bb_ctrl);

	if (output)
		ax->reg_memr &= ~AX_MEMR_MDIR;
	else
		ax->reg_memr |= AX_MEMR_MDIR;

	ei_outb(ax->reg_memr, ax->addr_memr);
}

static void ax_bb_set_data(struct mdiobb_ctrl *ctrl, int value)
{
	struct ax_device *ax = container_of(ctrl, struct ax_device, bb_ctrl);

	if (value)
		ax->reg_memr |= AX_MEMR_MDO;
	else
		ax->reg_memr &= ~AX_MEMR_MDO;

	ei_outb(ax->reg_memr, ax->addr_memr);
}

static int ax_bb_get_data(struct mdiobb_ctrl *ctrl)
{
	struct ax_device *ax = container_of(ctrl, struct ax_device, bb_ctrl);
	int reg_memr = ei_inb(ax->addr_memr);

	return reg_memr & AX_MEMR_MDI ? 1 : 0;
}

static struct mdiobb_ops bb_ops = {
	.owner = THIS_MODULE,
	.set_mdc = ax_bb_mdc,
	.set_mdio_dir = ax_bb_dir,
	.set_mdio_data = ax_bb_set_data,
	.get_mdio_data = ax_bb_get_data,
};

B
Ben Dooks 已提交
607 608
/* setup code */

609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
static int ax_mii_init(struct net_device *dev)
{
	struct platform_device *pdev = to_platform_device(dev->dev.parent);
	struct ei_device *ei_local = netdev_priv(dev);
	struct ax_device *ax = to_ax_dev(dev);
	int err, i;

	ax->bb_ctrl.ops = &bb_ops;
	ax->addr_memr = ei_local->mem + AX_MEMR;
	ax->mii_bus = alloc_mdio_bitbang(&ax->bb_ctrl);
	if (!ax->mii_bus) {
		err = -ENOMEM;
		goto out;
	}

	ax->mii_bus->name = "ax88796_mii_bus";
	ax->mii_bus->parent = dev->dev.parent;
626 627
	snprintf(ax->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
		pdev->name, pdev->id);
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651

	ax->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
	if (!ax->mii_bus->irq) {
		err = -ENOMEM;
		goto out_free_mdio_bitbang;
	}

	for (i = 0; i < PHY_MAX_ADDR; i++)
		ax->mii_bus->irq[i] = PHY_POLL;

	err = mdiobus_register(ax->mii_bus);
	if (err)
		goto out_free_irq;

	return 0;

 out_free_irq:
	kfree(ax->mii_bus->irq);
 out_free_mdio_bitbang:
	free_mdio_bitbang(ax->mii_bus);
 out:
	return err;
}

B
Ben Dooks 已提交
652 653 654 655 656
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);

657 658
	/* Select page 0 */
	ei_outb(E8390_NODMA + E8390_PAGE0 + E8390_STOP, ioaddr + E8390_CMD);
B
Ben Dooks 已提交
659 660 661 662 663 664

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

665 666
/*
 * ax_init_dev
B
Ben Dooks 已提交
667 668 669 670 671 672
 *
 * 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.
 */
673
static int ax_init_dev(struct net_device *dev)
B
Ben Dooks 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
{
	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 */

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

696
		for (i = 0; i < sizeof(SA_prom); i += 2) {
B
Ben Dooks 已提交
697
			SA_prom[i] = ei_inb(ioaddr + NE_DATAPORT);
698
			SA_prom[i + 1] = ei_inb(ioaddr + NE_DATAPORT);
B
Ben Dooks 已提交
699 700 701 702 703 704
		}

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

705
		memcpy(dev->dev_addr, SA_prom, 6);
B
Ben Dooks 已提交
706 707
	}

M
Magnus Damm 已提交
708
#ifdef CONFIG_AX88796_93CX6
709
	if (ax->plat->flags & AXFLG_HAS_93CX6) {
M
Magnus Damm 已提交
710 711 712 713 714 715 716 717 718 719 720 721
		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);

722
		memcpy(dev->dev_addr, mac_addr, 6);
M
Magnus Damm 已提交
723 724
	}
#endif
B
Ben Dooks 已提交
725 726 727 728 729 730 731 732 733 734
	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;
	}

735 736 737 738
	/* 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 */
739
		for (i = 0; i < ETH_ALEN; i++)
740 741
			dev->dev_addr[i] =
				ei_inb(ioaddr + EN1_PHYS_SHIFT(i));
B
Ben Dooks 已提交
742 743
	}

744 745
	if ((ax->plat->flags & AXFLG_MAC_FROMPLATFORM) &&
	    ax->plat->mac_addr)
746
		memcpy(dev->dev_addr, ax->plat->mac_addr, ETH_ALEN);
747

B
Ben Dooks 已提交
748 749
	ax_reset_8390(dev);

750 751 752 753 754
	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 已提交
755 756

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

761 762 763 764 765
	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 已提交
766

767 768
	dev->netdev_ops = &ax_netdev_ops;
	dev->ethtool_ops = &ax_ethtool_ops;
B
Ben Dooks 已提交
769

770 771 772
	ret = ax_mii_init(dev);
	if (ret)
		goto out_irq;
B
Ben Dooks 已提交
773 774 775 776 777 778 779

	ax_NS8390_init(dev, 0);

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

780 781 782 783
	netdev_info(dev, "%dbit, irq %d, %lx, MAC: %pM\n",
		    ei_local->word16 ? 16 : 8, dev->irq, dev->base_addr,
		    dev->dev_addr);

B
Ben Dooks 已提交
784 785 786 787 788 789 790 791 792
	return 0;

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

793
static int ax_remove(struct platform_device *pdev)
B
Ben Dooks 已提交
794
{
795
	struct net_device *dev = platform_get_drvdata(pdev);
796
	struct ei_device *ei_local = netdev_priv(dev);
797 798
	struct ax_device *ax = to_ax_dev(dev);
	struct resource *mem;
B
Ben Dooks 已提交
799 800 801 802

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

803
	iounmap(ei_local->mem);
804 805
	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	release_mem_region(mem->start, resource_size(mem));
B
Ben Dooks 已提交
806 807 808

	if (ax->map2) {
		iounmap(ax->map2);
809 810
		mem = platform_get_resource(pdev, IORESOURCE_MEM, 1);
		release_mem_region(mem->start, resource_size(mem));
B
Ben Dooks 已提交
811 812 813 814 815 816 817
	}

	free_netdev(dev);

	return 0;
}

818 819
/*
 * ax_probe
B
Ben Dooks 已提交
820 821
 *
 * This is the entry point when the platform device system uses to
822 823 824
 * 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 已提交
825 826 827
static int ax_probe(struct platform_device *pdev)
{
	struct net_device *dev;
828
	struct ei_device *ei_local;
829
	struct ax_device *ax;
830 831
	struct resource *irq, *mem, *mem2;
	resource_size_t mem_size, mem2_size = 0;
832
	int ret = 0;
B
Ben Dooks 已提交
833 834 835 836 837 838

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

	/* ok, let's setup our device */
839
	SET_NETDEV_DEV(dev, &pdev->dev);
840
	ei_local = netdev_priv(dev);
B
Ben Dooks 已提交
841 842 843 844 845
	ax = to_ax_dev(dev);

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

846
	ei_local->rxcr_base = ax->plat->rcr_val;
B
Ben Dooks 已提交
847 848

	/* find the platform resources */
849 850
	irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (!irq) {
B
Ben Dooks 已提交
851
		dev_err(&pdev->dev, "no IRQ specified\n");
852
		ret = -ENXIO;
B
Ben Dooks 已提交
853 854
		goto exit_mem;
	}
855

856 857
	dev->irq = irq->start;
	ax->irqflags = irq->flags & IRQF_TRIGGER_MASK;
B
Ben Dooks 已提交
858

859 860
	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!mem) {
B
Ben Dooks 已提交
861 862 863 864 865
		dev_err(&pdev->dev, "no MEM specified\n");
		ret = -ENXIO;
		goto exit_mem;
	}

866
	mem_size = resource_size(mem);
B
Ben Dooks 已提交
867

868 869 870 871
	/*
	 * setup the register offsets from either the platform data or
	 * by using the size of the resource provided
	 */
B
Ben Dooks 已提交
872
	if (ax->plat->reg_offsets)
873
		ei_local->reg_offset = ax->plat->reg_offsets;
B
Ben Dooks 已提交
874
	else {
875
		ei_local->reg_offset = ax->reg_offsets;
B
Ben Dooks 已提交
876
		for (ret = 0; ret < 0x18; ret++)
877
			ax->reg_offsets[ret] = (mem_size / 0x18) * ret;
B
Ben Dooks 已提交
878 879
	}

880
	if (!request_mem_region(mem->start, mem_size, pdev->name)) {
B
Ben Dooks 已提交
881
		dev_err(&pdev->dev, "cannot reserve registers\n");
882
		ret = -ENXIO;
B
Ben Dooks 已提交
883 884 885
		goto exit_mem;
	}

886
	ei_local->mem = ioremap(mem->start, mem_size);
887
	dev->base_addr = (unsigned long)ei_local->mem;
B
Ben Dooks 已提交
888

889
	if (ei_local->mem == NULL) {
890
		dev_err(&pdev->dev, "Cannot ioremap area %pR\n", mem);
B
Ben Dooks 已提交
891

892
		ret = -ENXIO;
B
Ben Dooks 已提交
893 894 895 896
		goto exit_req;
	}

	/* look for reset area */
897 898
	mem2 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (!mem2) {
B
Ben Dooks 已提交
899 900
		if (!ax->plat->reg_offsets) {
			for (ret = 0; ret < 0x20; ret++)
901
				ax->reg_offsets[ret] = (mem_size / 0x20) * ret;
B
Ben Dooks 已提交
902 903
		}
	} else {
904
		mem2_size = resource_size(mem2);
B
Ben Dooks 已提交
905

906
		if (!request_mem_region(mem2->start, mem2_size, pdev->name)) {
B
Ben Dooks 已提交
907 908 909 910 911
			dev_err(&pdev->dev, "cannot reserve registers\n");
			ret = -ENXIO;
			goto exit_mem1;
		}

912 913
		ax->map2 = ioremap(mem2->start, mem2_size);
		if (!ax->map2) {
914
			dev_err(&pdev->dev, "cannot map reset register\n");
B
Ben Dooks 已提交
915 916 917 918
			ret = -ENXIO;
			goto exit_mem2;
		}

919
		ei_local->reg_offset[0x1f] = ax->map2 - ei_local->mem;
B
Ben Dooks 已提交
920 921 922
	}

	/* got resources, now initialise and register device */
923
	ret = ax_init_dev(dev);
B
Ben Dooks 已提交
924 925 926
	if (!ret)
		return 0;

927
	if (!ax->map2)
B
Ben Dooks 已提交
928 929 930 931 932
		goto exit_mem1;

	iounmap(ax->map2);

 exit_mem2:
933
	release_mem_region(mem2->start, mem2_size);
B
Ben Dooks 已提交
934 935

 exit_mem1:
936
	iounmap(ei_local->mem);
B
Ben Dooks 已提交
937 938

 exit_req:
939
	release_mem_region(mem->start, mem_size);
B
Ben Dooks 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952

 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);
953
	struct ax_device *ax = to_ax_dev(ndev);
B
Ben Dooks 已提交
954 955 956 957 958 959 960 961 962 963 964 965

	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);
966
	struct ax_device *ax = to_ax_dev(ndev);
B
Ben Dooks 已提交
967 968 969 970 971 972 973 974 975 976 977 978 979

	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
980
#define ax_resume NULL
B
Ben Dooks 已提交
981 982 983 984 985 986 987 988 989 990 991 992 993
#endif

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

994
module_platform_driver(axdrv);
B
Ben Dooks 已提交
995 996 997 998

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