Linux Audio

Check our new training course

Yocto distribution development and maintenance

Need a Yocto distribution for your embedded project?
Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 *  linux/drivers/acorn/net/etherh.c
  4 *
  5 *  Copyright (C) 2000-2002 Russell King
  6 *
 
 
 
 
  7 * NS8390 I-cubed EtherH and ANT EtherM specific driver
  8 * Thanks to I-Cubed for information on their cards.
  9 * EtherM conversion (C) 1999 Chris Kemp and Tim Watterton
 10 * EtherM integration (C) 2000 Aleph One Ltd (Tak-Shing Chan)
 11 * EtherM integration re-engineered by Russell King.
 12 *
 13 * Changelog:
 14 *  08-12-1996	RMK	1.00	Created
 15 *		RMK	1.03	Added support for EtherLan500 cards
 16 *  23-11-1997	RMK	1.04	Added media autodetection
 17 *  16-04-1998	RMK	1.05	Improved media autodetection
 18 *  10-02-2000	RMK	1.06	Updated for 2.3.43
 19 *  13-05-2000	RMK	1.07	Updated for 2.3.99-pre8
 20 *  12-10-1999  CK/TEW		EtherM driver first release
 21 *  21-12-2000	TTC		EtherH/EtherM integration
 22 *  25-12-2000	RMK	1.08	Clean integration of EtherM into this driver.
 23 *  03-01-2002	RMK	1.09	Always enable IRQs if we're in the nic slot.
 24 */
 25
 26#include <linux/module.h>
 27#include <linux/kernel.h>
 28#include <linux/types.h>
 29#include <linux/fcntl.h>
 30#include <linux/interrupt.h>
 31#include <linux/ioport.h>
 32#include <linux/in.h>
 33#include <linux/string.h>
 34#include <linux/errno.h>
 35#include <linux/netdevice.h>
 36#include <linux/etherdevice.h>
 37#include <linux/ethtool.h>
 38#include <linux/skbuff.h>
 39#include <linux/delay.h>
 40#include <linux/device.h>
 41#include <linux/init.h>
 42#include <linux/bitops.h>
 43#include <linux/jiffies.h>
 44
 45#include <asm/ecard.h>
 46#include <asm/io.h>
 47#include <asm/system_info.h>
 48
 49#define EI_SHIFT(x)	(ei_local->reg_offset[x])
 50
 51#define ei_inb(_p)	 readb((void __iomem *)_p)
 52#define ei_outb(_v,_p)	 writeb(_v,(void __iomem *)_p)
 53#define ei_inb_p(_p)	 readb((void __iomem *)_p)
 54#define ei_outb_p(_v,_p) writeb(_v,(void __iomem *)_p)
 55
 56#define DRV_NAME	"etherh"
 57#define DRV_VERSION	"1.11"
 58
 59static char version[] =
 60	"EtherH/EtherM Driver (c) 2002-2004 Russell King " DRV_VERSION "\n";
 61
 62#include "lib8390.c"
 63
 
 
 64struct etherh_priv {
 65	void __iomem	*ioc_fast;
 66	void __iomem	*memc;
 67	void __iomem	*dma_base;
 68	unsigned int	id;
 69	void __iomem	*ctrl_port;
 70	unsigned char	ctrl;
 71	u32		supported;
 72};
 73
 74struct etherh_data {
 75	unsigned long	ns8390_offset;
 76	unsigned long	dataport_offset;
 77	unsigned long	ctrlport_offset;
 78	int		ctrl_ioc;
 79	const char	name[16];
 80	u32		supported;
 81	unsigned char	tx_start_page;
 82	unsigned char	stop_page;
 83};
 84
 85MODULE_AUTHOR("Russell King");
 86MODULE_DESCRIPTION("EtherH/EtherM driver");
 87MODULE_LICENSE("GPL");
 88
 89#define ETHERH500_DATAPORT	0x800	/* MEMC */
 90#define ETHERH500_NS8390	0x000	/* MEMC */
 91#define ETHERH500_CTRLPORT	0x800	/* IOC  */
 92
 93#define ETHERH600_DATAPORT	0x040	/* MEMC */
 94#define ETHERH600_NS8390	0x800	/* MEMC */
 95#define ETHERH600_CTRLPORT	0x200	/* MEMC */
 96
 97#define ETHERH_CP_IE		1
 98#define ETHERH_CP_IF		2
 99#define ETHERH_CP_HEARTBEAT	2
100
101#define ETHERH_TX_START_PAGE	1
102#define ETHERH_STOP_PAGE	127
103
104/*
105 * These came from CK/TEW
106 */
107#define ETHERM_DATAPORT		0x200	/* MEMC */
108#define ETHERM_NS8390		0x800	/* MEMC */
109#define ETHERM_CTRLPORT		0x23c	/* MEMC */
110
111#define ETHERM_TX_START_PAGE	64
112#define ETHERM_STOP_PAGE	127
113
114/* ------------------------------------------------------------------------ */
115
116#define etherh_priv(dev) \
117 ((struct etherh_priv *)(((char *)netdev_priv(dev)) + sizeof(struct ei_device)))
118
119static inline void etherh_set_ctrl(struct etherh_priv *eh, unsigned char mask)
120{
121	unsigned char ctrl = eh->ctrl | mask;
122	eh->ctrl = ctrl;
123	writeb(ctrl, eh->ctrl_port);
124}
125
126static inline void etherh_clr_ctrl(struct etherh_priv *eh, unsigned char mask)
127{
128	unsigned char ctrl = eh->ctrl & ~mask;
129	eh->ctrl = ctrl;
130	writeb(ctrl, eh->ctrl_port);
131}
132
133static inline unsigned int etherh_get_stat(struct etherh_priv *eh)
134{
135	return readb(eh->ctrl_port);
136}
137
138
139
140
141static void etherh_irq_enable(ecard_t *ec, int irqnr)
142{
143	struct etherh_priv *eh = ec->irq_data;
144
145	etherh_set_ctrl(eh, ETHERH_CP_IE);
146}
147
148static void etherh_irq_disable(ecard_t *ec, int irqnr)
149{
150	struct etherh_priv *eh = ec->irq_data;
151
152	etherh_clr_ctrl(eh, ETHERH_CP_IE);
153}
154
155static expansioncard_ops_t etherh_ops = {
156	.irqenable	= etherh_irq_enable,
157	.irqdisable	= etherh_irq_disable,
158};
159
160
161
162
163static void
164etherh_setif(struct net_device *dev)
165{
166	struct ei_device *ei_local = netdev_priv(dev);
167	unsigned long flags;
168	void __iomem *addr;
169
170	local_irq_save(flags);
171
172	/* set the interface type */
173	switch (etherh_priv(dev)->id) {
174	case PROD_I3_ETHERLAN600:
175	case PROD_I3_ETHERLAN600A:
176		addr = (void __iomem *)dev->base_addr + EN0_RCNTHI;
177
178		switch (dev->if_port) {
179		case IF_PORT_10BASE2:
180			writeb((readb(addr) & 0xf8) | 1, addr);
181			break;
182		case IF_PORT_10BASET:
183			writeb((readb(addr) & 0xf8), addr);
184			break;
185		}
186		break;
187
188	case PROD_I3_ETHERLAN500:
189		switch (dev->if_port) {
190		case IF_PORT_10BASE2:
191			etherh_clr_ctrl(etherh_priv(dev), ETHERH_CP_IF);
192			break;
193
194		case IF_PORT_10BASET:
195			etherh_set_ctrl(etherh_priv(dev), ETHERH_CP_IF);
196			break;
197		}
198		break;
199
200	default:
201		break;
202	}
203
204	local_irq_restore(flags);
205}
206
207static int
208etherh_getifstat(struct net_device *dev)
209{
210	struct ei_device *ei_local = netdev_priv(dev);
211	void __iomem *addr;
212	int stat = 0;
213
214	switch (etherh_priv(dev)->id) {
215	case PROD_I3_ETHERLAN600:
216	case PROD_I3_ETHERLAN600A:
217		addr = (void __iomem *)dev->base_addr + EN0_RCNTHI;
218		switch (dev->if_port) {
219		case IF_PORT_10BASE2:
220			stat = 1;
221			break;
222		case IF_PORT_10BASET:
223			stat = readb(addr) & 4;
224			break;
225		}
226		break;
227
228	case PROD_I3_ETHERLAN500:
229		switch (dev->if_port) {
230		case IF_PORT_10BASE2:
231			stat = 1;
232			break;
233		case IF_PORT_10BASET:
234			stat = etherh_get_stat(etherh_priv(dev)) & ETHERH_CP_HEARTBEAT;
235			break;
236		}
237		break;
238
239	default:
240		stat = 0;
241		break;
242	}
243
244	return stat != 0;
245}
246
247/*
248 * Configure the interface.  Note that we ignore the other
249 * parts of ifmap, since its mostly meaningless for this driver.
250 */
251static int etherh_set_config(struct net_device *dev, struct ifmap *map)
252{
253	switch (map->port) {
254	case IF_PORT_10BASE2:
255	case IF_PORT_10BASET:
256		/*
257		 * If the user explicitly sets the interface
258		 * media type, turn off automedia detection.
259		 */
260		dev->flags &= ~IFF_AUTOMEDIA;
261		dev->if_port = map->port;
262		break;
263
264	default:
265		return -EINVAL;
266	}
267
268	etherh_setif(dev);
269
270	return 0;
271}
272
273/*
274 * Reset the 8390 (hard reset).  Note that we can't actually do this.
275 */
276static void
277etherh_reset(struct net_device *dev)
278{
279	struct ei_device *ei_local = netdev_priv(dev);
280	void __iomem *addr = (void __iomem *)dev->base_addr;
281
282	writeb(E8390_NODMA+E8390_PAGE0+E8390_STOP, addr);
283
284	/*
285	 * See if we need to change the interface type.
286	 * Note that we use 'interface_num' as a flag
287	 * to indicate that we need to change the media.
288	 */
289	if (dev->flags & IFF_AUTOMEDIA && ei_local->interface_num) {
290		ei_local->interface_num = 0;
291
292		if (dev->if_port == IF_PORT_10BASET)
293			dev->if_port = IF_PORT_10BASE2;
294		else
295			dev->if_port = IF_PORT_10BASET;
296
297		etherh_setif(dev);
298	}
299}
300
301/*
302 * Write a block of data out to the 8390
303 */
304static void
305etherh_block_output (struct net_device *dev, int count, const unsigned char *buf, int start_page)
306{
307	struct ei_device *ei_local = netdev_priv(dev);
308	unsigned long dma_start;
309	void __iomem *dma_base, *addr;
310
311	if (ei_local->dmaing) {
312		netdev_err(dev, "DMAing conflict in etherh_block_input: "
313			   " DMAstat %d irqlock %d\n",
314			   ei_local->dmaing, ei_local->irqlock);
315		return;
316	}
317
318	/*
319	 * Make sure we have a round number of bytes if we're in word mode.
320	 */
321	if (count & 1 && ei_local->word16)
322		count++;
323
324	ei_local->dmaing = 1;
325
326	addr = (void __iomem *)dev->base_addr;
327	dma_base = etherh_priv(dev)->dma_base;
328
329	count = (count + 1) & ~1;
330	writeb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD);
331
332	writeb (0x42, addr + EN0_RCNTLO);
333	writeb (0x00, addr + EN0_RCNTHI);
334	writeb (0x42, addr + EN0_RSARLO);
335	writeb (0x00, addr + EN0_RSARHI);
336	writeb (E8390_RREAD | E8390_START, addr + E8390_CMD);
337
338	udelay (1);
339
340	writeb (ENISR_RDC, addr + EN0_ISR);
341	writeb (count, addr + EN0_RCNTLO);
342	writeb (count >> 8, addr + EN0_RCNTHI);
343	writeb (0, addr + EN0_RSARLO);
344	writeb (start_page, addr + EN0_RSARHI);
345	writeb (E8390_RWRITE | E8390_START, addr + E8390_CMD);
346
347	if (ei_local->word16)
348		writesw (dma_base, buf, count >> 1);
349	else
350		writesb (dma_base, buf, count);
351
352	dma_start = jiffies;
353
354	while ((readb (addr + EN0_ISR) & ENISR_RDC) == 0)
355		if (time_after(jiffies, dma_start + 2*HZ/100)) { /* 20ms */
356			netdev_warn(dev, "timeout waiting for TX RDC\n");
357			etherh_reset (dev);
358			__NS8390_init (dev, 1);
359			break;
360		}
361
362	writeb (ENISR_RDC, addr + EN0_ISR);
363	ei_local->dmaing = 0;
364}
365
366/*
367 * Read a block of data from the 8390
368 */
369static void
370etherh_block_input (struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
371{
372	struct ei_device *ei_local = netdev_priv(dev);
373	unsigned char *buf;
374	void __iomem *dma_base, *addr;
375
376	if (ei_local->dmaing) {
377		netdev_err(dev, "DMAing conflict in etherh_block_input: "
378			   " DMAstat %d irqlock %d\n",
379			   ei_local->dmaing, ei_local->irqlock);
380		return;
381	}
382
383	ei_local->dmaing = 1;
384
385	addr = (void __iomem *)dev->base_addr;
386	dma_base = etherh_priv(dev)->dma_base;
387
388	buf = skb->data;
389	writeb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD);
390	writeb (count, addr + EN0_RCNTLO);
391	writeb (count >> 8, addr + EN0_RCNTHI);
392	writeb (ring_offset, addr + EN0_RSARLO);
393	writeb (ring_offset >> 8, addr + EN0_RSARHI);
394	writeb (E8390_RREAD | E8390_START, addr + E8390_CMD);
395
396	if (ei_local->word16) {
397		readsw (dma_base, buf, count >> 1);
398		if (count & 1)
399			buf[count - 1] = readb (dma_base);
400	} else
401		readsb (dma_base, buf, count);
402
403	writeb (ENISR_RDC, addr + EN0_ISR);
404	ei_local->dmaing = 0;
405}
406
407/*
408 * Read a header from the 8390
409 */
410static void
411etherh_get_header (struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
412{
413	struct ei_device *ei_local = netdev_priv(dev);
414	void __iomem *dma_base, *addr;
415
416	if (ei_local->dmaing) {
417		netdev_err(dev, "DMAing conflict in etherh_get_header: "
418			   " DMAstat %d irqlock %d\n",
419			   ei_local->dmaing, ei_local->irqlock);
420		return;
421	}
422
423	ei_local->dmaing = 1;
424
425	addr = (void __iomem *)dev->base_addr;
426	dma_base = etherh_priv(dev)->dma_base;
427
428	writeb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD);
429	writeb (sizeof (*hdr), addr + EN0_RCNTLO);
430	writeb (0, addr + EN0_RCNTHI);
431	writeb (0, addr + EN0_RSARLO);
432	writeb (ring_page, addr + EN0_RSARHI);
433	writeb (E8390_RREAD | E8390_START, addr + E8390_CMD);
434
435	if (ei_local->word16)
436		readsw (dma_base, hdr, sizeof (*hdr) >> 1);
437	else
438		readsb (dma_base, hdr, sizeof (*hdr));
439
440	writeb (ENISR_RDC, addr + EN0_ISR);
441	ei_local->dmaing = 0;
442}
443
444/*
445 * Open/initialize the board.  This is called (in the current kernel)
446 * sometime after booting when the 'ifconfig' program is run.
447 *
448 * This routine should set everything up anew at each open, even
449 * registers that "should" only need to be set once at boot, so that
450 * there is non-reboot way to recover if something goes wrong.
451 */
452static int
453etherh_open(struct net_device *dev)
454{
455	struct ei_device *ei_local = netdev_priv(dev);
456
457	if (request_irq(dev->irq, __ei_interrupt, 0, dev->name, dev))
458		return -EAGAIN;
459
460	/*
461	 * Make sure that we aren't going to change the
462	 * media type on the next reset - we are about to
463	 * do automedia manually now.
464	 */
465	ei_local->interface_num = 0;
466
467	/*
468	 * If we are doing automedia detection, do it now.
469	 * This is more reliable than the 8390's detection.
470	 */
471	if (dev->flags & IFF_AUTOMEDIA) {
472		dev->if_port = IF_PORT_10BASET;
473		etherh_setif(dev);
474		mdelay(1);
475		if (!etherh_getifstat(dev)) {
476			dev->if_port = IF_PORT_10BASE2;
477			etherh_setif(dev);
478		}
479	} else
480		etherh_setif(dev);
481
482	etherh_reset(dev);
483	__ei_open(dev);
484
485	return 0;
486}
487
488/*
489 * The inverse routine to etherh_open().
490 */
491static int
492etherh_close(struct net_device *dev)
493{
494	__ei_close (dev);
495	free_irq (dev->irq, dev);
496	return 0;
497}
498
499/*
 
 
 
 
 
 
 
 
 
 
 
 
500 * Read the ethernet address string from the on board rom.
501 * This is an ascii string...
502 */
503static int etherh_addr(char *addr, struct expansion_card *ec)
504{
505	struct in_chunk_dir cd;
506	char *s;
507	
508	if (!ecard_readchunk(&cd, ec, 0xf5, 0)) {
509		printk(KERN_ERR "%s: unable to read module description string\n",
510		       dev_name(&ec->dev));
511		goto no_addr;
512	}
513
514	s = strchr(cd.d.string, '(');
515	if (s) {
516		int i;
517
518		for (i = 0; i < 6; i++) {
519			addr[i] = simple_strtoul(s + 1, &s, 0x10);
520			if (*s != (i == 5? ')' : ':'))
521				break;
522		}
523
524		if (i == 6)
525			return 0;
526	}
527
528	printk(KERN_ERR "%s: unable to parse MAC address: %s\n",
529	       dev_name(&ec->dev), cd.d.string);
530
531 no_addr:
532	return -ENODEV;
533}
534
535/*
536 * Create an ethernet address from the system serial number.
537 */
538static int __init etherm_addr(char *addr)
539{
540	unsigned int serial;
541
542	if (system_serial_low == 0 && system_serial_high == 0)
543		return -ENODEV;
544
545	serial = system_serial_low | system_serial_high;
546
547	addr[0] = 0;
548	addr[1] = 0;
549	addr[2] = 0xa4;
550	addr[3] = 0x10 + (serial >> 24);
551	addr[4] = serial >> 16;
552	addr[5] = serial >> 8;
553	return 0;
554}
555
556static void etherh_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
557{
558	strscpy(info->driver, DRV_NAME, sizeof(info->driver));
559	strscpy(info->version, DRV_VERSION, sizeof(info->version));
560	strscpy(info->bus_info, dev_name(dev->dev.parent),
561		sizeof(info->bus_info));
562}
563
564static int etherh_get_link_ksettings(struct net_device *dev,
565				     struct ethtool_link_ksettings *cmd)
566{
567	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
568						etherh_priv(dev)->supported);
569	cmd->base.speed = SPEED_10;
570	cmd->base.duplex = DUPLEX_HALF;
571	cmd->base.port = dev->if_port == IF_PORT_10BASET ? PORT_TP : PORT_BNC;
572	cmd->base.autoneg = (dev->flags & IFF_AUTOMEDIA ? AUTONEG_ENABLE :
573							  AUTONEG_DISABLE);
574	return 0;
575}
576
577static int etherh_set_link_ksettings(struct net_device *dev,
578				     const struct ethtool_link_ksettings *cmd)
579{
580	switch (cmd->base.autoneg) {
581	case AUTONEG_ENABLE:
582		dev->flags |= IFF_AUTOMEDIA;
583		break;
584
585	case AUTONEG_DISABLE:
586		switch (cmd->base.port) {
587		case PORT_TP:
588			dev->if_port = IF_PORT_10BASET;
589			break;
590
591		case PORT_BNC:
592			dev->if_port = IF_PORT_10BASE2;
593			break;
594
595		default:
596			return -EINVAL;
597		}
598		dev->flags &= ~IFF_AUTOMEDIA;
599		break;
600
601	default:
602		return -EINVAL;
603	}
604
605	etherh_setif(dev);
606
607	return 0;
608}
609
610static u32 etherh_get_msglevel(struct net_device *dev)
611{
612	struct ei_device *ei_local = netdev_priv(dev);
613
614	return ei_local->msg_enable;
615}
616
617static void etherh_set_msglevel(struct net_device *dev, u32 v)
618{
619	struct ei_device *ei_local = netdev_priv(dev);
620
621	ei_local->msg_enable = v;
622}
623
624static const struct ethtool_ops etherh_ethtool_ops = {
625	.get_drvinfo		= etherh_get_drvinfo,
626	.get_ts_info		= ethtool_op_get_ts_info,
627	.get_msglevel		= etherh_get_msglevel,
628	.set_msglevel		= etherh_set_msglevel,
629	.get_link_ksettings	= etherh_get_link_ksettings,
630	.set_link_ksettings	= etherh_set_link_ksettings,
631};
632
633static const struct net_device_ops etherh_netdev_ops = {
634	.ndo_open		= etherh_open,
635	.ndo_stop		= etherh_close,
636	.ndo_set_config		= etherh_set_config,
637	.ndo_start_xmit		= __ei_start_xmit,
638	.ndo_tx_timeout		= __ei_tx_timeout,
639	.ndo_get_stats		= __ei_get_stats,
640	.ndo_set_rx_mode	= __ei_set_multicast_list,
641	.ndo_validate_addr	= eth_validate_addr,
642	.ndo_set_mac_address	= eth_mac_addr,
643#ifdef CONFIG_NET_POLL_CONTROLLER
644	.ndo_poll_controller	= __ei_poll,
645#endif
646};
647
648static u32 etherh_regoffsets[16];
649static u32 etherm_regoffsets[16];
650
651static int
652etherh_probe(struct expansion_card *ec, const struct ecard_id *id)
653{
654	const struct etherh_data *data = id->data;
655	struct ei_device *ei_local;
656	struct net_device *dev;
657	struct etherh_priv *eh;
658	u8 addr[ETH_ALEN];
659	int ret;
660
 
 
661	ret = ecard_request_resources(ec);
662	if (ret)
663		goto out;
664
665	dev = ____alloc_ei_netdev(sizeof(struct etherh_priv));
666	if (!dev) {
667		ret = -ENOMEM;
668		goto release;
669	}
670
671	SET_NETDEV_DEV(dev, &ec->dev);
672
673	dev->netdev_ops		= &etherh_netdev_ops;
674	dev->irq		= ec->irq;
675	dev->ethtool_ops	= &etherh_ethtool_ops;
676
677	if (data->supported & SUPPORTED_Autoneg)
678		dev->flags |= IFF_AUTOMEDIA;
679	if (data->supported & SUPPORTED_TP) {
680		dev->flags |= IFF_PORTSEL;
681		dev->if_port = IF_PORT_10BASET;
682	} else if (data->supported & SUPPORTED_BNC) {
683		dev->flags |= IFF_PORTSEL;
684		dev->if_port = IF_PORT_10BASE2;
685	} else
686		dev->if_port = IF_PORT_UNKNOWN;
687
688	eh = etherh_priv(dev);
689	eh->supported		= data->supported;
690	eh->ctrl		= 0;
691	eh->id			= ec->cid.product;
692	eh->memc		= ecardm_iomap(ec, ECARD_RES_MEMC, 0, PAGE_SIZE);
693	if (!eh->memc) {
694		ret = -ENOMEM;
695		goto free;
696	}
697
698	eh->ctrl_port = eh->memc;
699	if (data->ctrl_ioc) {
700		eh->ioc_fast = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, PAGE_SIZE);
701		if (!eh->ioc_fast) {
702			ret = -ENOMEM;
703			goto free;
704		}
705		eh->ctrl_port = eh->ioc_fast;
706	}
707
708	dev->base_addr = (unsigned long)eh->memc + data->ns8390_offset;
709	eh->dma_base = eh->memc + data->dataport_offset;
710	eh->ctrl_port += data->ctrlport_offset;
711
712	/*
713	 * IRQ and control port handling - only for non-NIC slot cards.
714	 */
715	if (ec->slot_no != 8) {
716		ecard_setirq(ec, &etherh_ops, eh);
717	} else {
718		/*
719		 * If we're in the NIC slot, make sure the IRQ is enabled
720		 */
721		etherh_set_ctrl(eh, ETHERH_CP_IE);
722	}
723
724	ei_local = netdev_priv(dev);
725	spin_lock_init(&ei_local->page_lock);
726
727	if (ec->cid.product == PROD_ANT_ETHERM) {
728		etherm_addr(addr);
729		ei_local->reg_offset = etherm_regoffsets;
730	} else {
731		etherh_addr(addr, ec);
732		ei_local->reg_offset = etherh_regoffsets;
733	}
734	eth_hw_addr_set(dev, addr);
735
736	ei_local->name          = dev->name;
737	ei_local->word16        = 1;
738	ei_local->tx_start_page = data->tx_start_page;
739	ei_local->rx_start_page = ei_local->tx_start_page + TX_PAGES;
740	ei_local->stop_page     = data->stop_page;
741	ei_local->reset_8390    = etherh_reset;
742	ei_local->block_input   = etherh_block_input;
743	ei_local->block_output  = etherh_block_output;
744	ei_local->get_8390_hdr  = etherh_get_header;
745	ei_local->interface_num = 0;
 
746
747	etherh_reset(dev);
748	__NS8390_init(dev, 0);
749
750	ret = register_netdev(dev);
751	if (ret)
752		goto free;
753
754	netdev_info(dev, "%s in slot %d, %pM\n",
755		    data->name, ec->slot_no, dev->dev_addr);
756
757	ecard_set_drvdata(ec, dev);
758
759	return 0;
760
761 free:
762	free_netdev(dev);
763 release:
764	ecard_release_resources(ec);
765 out:
766	return ret;
767}
768
769static void etherh_remove(struct expansion_card *ec)
770{
771	struct net_device *dev = ecard_get_drvdata(ec);
772
773	ecard_set_drvdata(ec, NULL);
774
775	unregister_netdev(dev);
776
777	free_netdev(dev);
778
779	ecard_release_resources(ec);
780}
781
782static struct etherh_data etherm_data = {
783	.ns8390_offset		= ETHERM_NS8390,
784	.dataport_offset	= ETHERM_NS8390 + ETHERM_DATAPORT,
785	.ctrlport_offset	= ETHERM_NS8390 + ETHERM_CTRLPORT,
786	.name			= "ANT EtherM",
787	.supported		= SUPPORTED_10baseT_Half,
788	.tx_start_page		= ETHERM_TX_START_PAGE,
789	.stop_page		= ETHERM_STOP_PAGE,
790};
791
792static struct etherh_data etherlan500_data = {
793	.ns8390_offset		= ETHERH500_NS8390,
794	.dataport_offset	= ETHERH500_NS8390 + ETHERH500_DATAPORT,
795	.ctrlport_offset	= ETHERH500_CTRLPORT,
796	.ctrl_ioc		= 1,
797	.name			= "i3 EtherH 500",
798	.supported		= SUPPORTED_10baseT_Half,
799	.tx_start_page		= ETHERH_TX_START_PAGE,
800	.stop_page		= ETHERH_STOP_PAGE,
801};
802
803static struct etherh_data etherlan600_data = {
804	.ns8390_offset		= ETHERH600_NS8390,
805	.dataport_offset	= ETHERH600_NS8390 + ETHERH600_DATAPORT,
806	.ctrlport_offset	= ETHERH600_NS8390 + ETHERH600_CTRLPORT,
807	.name			= "i3 EtherH 600",
808	.supported		= SUPPORTED_10baseT_Half | SUPPORTED_TP | SUPPORTED_BNC | SUPPORTED_Autoneg,
809	.tx_start_page		= ETHERH_TX_START_PAGE,
810	.stop_page		= ETHERH_STOP_PAGE,
811};
812
813static struct etherh_data etherlan600a_data = {
814	.ns8390_offset		= ETHERH600_NS8390,
815	.dataport_offset	= ETHERH600_NS8390 + ETHERH600_DATAPORT,
816	.ctrlport_offset	= ETHERH600_NS8390 + ETHERH600_CTRLPORT,
817	.name			= "i3 EtherH 600A",
818	.supported		= SUPPORTED_10baseT_Half | SUPPORTED_TP | SUPPORTED_BNC | SUPPORTED_Autoneg,
819	.tx_start_page		= ETHERH_TX_START_PAGE,
820	.stop_page		= ETHERH_STOP_PAGE,
821};
822
823static const struct ecard_id etherh_ids[] = {
824	{ MANU_ANT, PROD_ANT_ETHERM,      &etherm_data       },
825	{ MANU_I3,  PROD_I3_ETHERLAN500,  &etherlan500_data  },
826	{ MANU_I3,  PROD_I3_ETHERLAN600,  &etherlan600_data  },
827	{ MANU_I3,  PROD_I3_ETHERLAN600A, &etherlan600a_data },
828	{ 0xffff,   0xffff }
829};
830
831static struct ecard_driver etherh_driver = {
832	.probe		= etherh_probe,
833	.remove		= etherh_remove,
834	.id_table	= etherh_ids,
835	.drv = {
836		.name	= DRV_NAME,
837	},
838};
839
840static int __init etherh_init(void)
841{
842	int i;
843
844	for (i = 0; i < 16; i++) {
845		etherh_regoffsets[i] = i << 2;
846		etherm_regoffsets[i] = i << 5;
847	}
848
849	return ecard_register_driver(&etherh_driver);
850}
851
852static void __exit etherh_exit(void)
853{
854	ecard_remove_driver(&etherh_driver);
855}
856
857module_init(etherh_init);
858module_exit(etherh_exit);
v4.10.11
 
  1/*
  2 *  linux/drivers/acorn/net/etherh.c
  3 *
  4 *  Copyright (C) 2000-2002 Russell King
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License version 2 as
  8 * published by the Free Software Foundation.
  9 *
 10 * NS8390 I-cubed EtherH and ANT EtherM specific driver
 11 * Thanks to I-Cubed for information on their cards.
 12 * EtherM conversion (C) 1999 Chris Kemp and Tim Watterton
 13 * EtherM integration (C) 2000 Aleph One Ltd (Tak-Shing Chan)
 14 * EtherM integration re-engineered by Russell King.
 15 *
 16 * Changelog:
 17 *  08-12-1996	RMK	1.00	Created
 18 *		RMK	1.03	Added support for EtherLan500 cards
 19 *  23-11-1997	RMK	1.04	Added media autodetection
 20 *  16-04-1998	RMK	1.05	Improved media autodetection
 21 *  10-02-2000	RMK	1.06	Updated for 2.3.43
 22 *  13-05-2000	RMK	1.07	Updated for 2.3.99-pre8
 23 *  12-10-1999  CK/TEW		EtherM driver first release
 24 *  21-12-2000	TTC		EtherH/EtherM integration
 25 *  25-12-2000	RMK	1.08	Clean integration of EtherM into this driver.
 26 *  03-01-2002	RMK	1.09	Always enable IRQs if we're in the nic slot.
 27 */
 28
 29#include <linux/module.h>
 30#include <linux/kernel.h>
 31#include <linux/types.h>
 32#include <linux/fcntl.h>
 33#include <linux/interrupt.h>
 34#include <linux/ioport.h>
 35#include <linux/in.h>
 36#include <linux/string.h>
 37#include <linux/errno.h>
 38#include <linux/netdevice.h>
 39#include <linux/etherdevice.h>
 40#include <linux/ethtool.h>
 41#include <linux/skbuff.h>
 42#include <linux/delay.h>
 43#include <linux/device.h>
 44#include <linux/init.h>
 45#include <linux/bitops.h>
 46#include <linux/jiffies.h>
 47
 48#include <asm/ecard.h>
 49#include <asm/io.h>
 50#include <asm/system_info.h>
 51
 52#define EI_SHIFT(x)	(ei_local->reg_offset[x])
 53
 54#define ei_inb(_p)	 readb((void __iomem *)_p)
 55#define ei_outb(_v,_p)	 writeb(_v,(void __iomem *)_p)
 56#define ei_inb_p(_p)	 readb((void __iomem *)_p)
 57#define ei_outb_p(_v,_p) writeb(_v,(void __iomem *)_p)
 58
 59#define DRV_NAME	"etherh"
 60#define DRV_VERSION	"1.11"
 61
 62static char version[] =
 63	"EtherH/EtherM Driver (c) 2002-2004 Russell King " DRV_VERSION "\n";
 64
 65#include "lib8390.c"
 66
 67static u32 etherh_msg_enable;
 68
 69struct etherh_priv {
 70	void __iomem	*ioc_fast;
 71	void __iomem	*memc;
 72	void __iomem	*dma_base;
 73	unsigned int	id;
 74	void __iomem	*ctrl_port;
 75	unsigned char	ctrl;
 76	u32		supported;
 77};
 78
 79struct etherh_data {
 80	unsigned long	ns8390_offset;
 81	unsigned long	dataport_offset;
 82	unsigned long	ctrlport_offset;
 83	int		ctrl_ioc;
 84	const char	name[16];
 85	u32		supported;
 86	unsigned char	tx_start_page;
 87	unsigned char	stop_page;
 88};
 89
 90MODULE_AUTHOR("Russell King");
 91MODULE_DESCRIPTION("EtherH/EtherM driver");
 92MODULE_LICENSE("GPL");
 93
 94#define ETHERH500_DATAPORT	0x800	/* MEMC */
 95#define ETHERH500_NS8390	0x000	/* MEMC */
 96#define ETHERH500_CTRLPORT	0x800	/* IOC  */
 97
 98#define ETHERH600_DATAPORT	0x040	/* MEMC */
 99#define ETHERH600_NS8390	0x800	/* MEMC */
100#define ETHERH600_CTRLPORT	0x200	/* MEMC */
101
102#define ETHERH_CP_IE		1
103#define ETHERH_CP_IF		2
104#define ETHERH_CP_HEARTBEAT	2
105
106#define ETHERH_TX_START_PAGE	1
107#define ETHERH_STOP_PAGE	127
108
109/*
110 * These came from CK/TEW
111 */
112#define ETHERM_DATAPORT		0x200	/* MEMC */
113#define ETHERM_NS8390		0x800	/* MEMC */
114#define ETHERM_CTRLPORT		0x23c	/* MEMC */
115
116#define ETHERM_TX_START_PAGE	64
117#define ETHERM_STOP_PAGE	127
118
119/* ------------------------------------------------------------------------ */
120
121#define etherh_priv(dev) \
122 ((struct etherh_priv *)(((char *)netdev_priv(dev)) + sizeof(struct ei_device)))
123
124static inline void etherh_set_ctrl(struct etherh_priv *eh, unsigned char mask)
125{
126	unsigned char ctrl = eh->ctrl | mask;
127	eh->ctrl = ctrl;
128	writeb(ctrl, eh->ctrl_port);
129}
130
131static inline void etherh_clr_ctrl(struct etherh_priv *eh, unsigned char mask)
132{
133	unsigned char ctrl = eh->ctrl & ~mask;
134	eh->ctrl = ctrl;
135	writeb(ctrl, eh->ctrl_port);
136}
137
138static inline unsigned int etherh_get_stat(struct etherh_priv *eh)
139{
140	return readb(eh->ctrl_port);
141}
142
143
144
145
146static void etherh_irq_enable(ecard_t *ec, int irqnr)
147{
148	struct etherh_priv *eh = ec->irq_data;
149
150	etherh_set_ctrl(eh, ETHERH_CP_IE);
151}
152
153static void etherh_irq_disable(ecard_t *ec, int irqnr)
154{
155	struct etherh_priv *eh = ec->irq_data;
156
157	etherh_clr_ctrl(eh, ETHERH_CP_IE);
158}
159
160static expansioncard_ops_t etherh_ops = {
161	.irqenable	= etherh_irq_enable,
162	.irqdisable	= etherh_irq_disable,
163};
164
165
166
167
168static void
169etherh_setif(struct net_device *dev)
170{
171	struct ei_device *ei_local = netdev_priv(dev);
172	unsigned long flags;
173	void __iomem *addr;
174
175	local_irq_save(flags);
176
177	/* set the interface type */
178	switch (etherh_priv(dev)->id) {
179	case PROD_I3_ETHERLAN600:
180	case PROD_I3_ETHERLAN600A:
181		addr = (void __iomem *)dev->base_addr + EN0_RCNTHI;
182
183		switch (dev->if_port) {
184		case IF_PORT_10BASE2:
185			writeb((readb(addr) & 0xf8) | 1, addr);
186			break;
187		case IF_PORT_10BASET:
188			writeb((readb(addr) & 0xf8), addr);
189			break;
190		}
191		break;
192
193	case PROD_I3_ETHERLAN500:
194		switch (dev->if_port) {
195		case IF_PORT_10BASE2:
196			etherh_clr_ctrl(etherh_priv(dev), ETHERH_CP_IF);
197			break;
198
199		case IF_PORT_10BASET:
200			etherh_set_ctrl(etherh_priv(dev), ETHERH_CP_IF);
201			break;
202		}
203		break;
204
205	default:
206		break;
207	}
208
209	local_irq_restore(flags);
210}
211
212static int
213etherh_getifstat(struct net_device *dev)
214{
215	struct ei_device *ei_local = netdev_priv(dev);
216	void __iomem *addr;
217	int stat = 0;
218
219	switch (etherh_priv(dev)->id) {
220	case PROD_I3_ETHERLAN600:
221	case PROD_I3_ETHERLAN600A:
222		addr = (void __iomem *)dev->base_addr + EN0_RCNTHI;
223		switch (dev->if_port) {
224		case IF_PORT_10BASE2:
225			stat = 1;
226			break;
227		case IF_PORT_10BASET:
228			stat = readb(addr) & 4;
229			break;
230		}
231		break;
232
233	case PROD_I3_ETHERLAN500:
234		switch (dev->if_port) {
235		case IF_PORT_10BASE2:
236			stat = 1;
237			break;
238		case IF_PORT_10BASET:
239			stat = etherh_get_stat(etherh_priv(dev)) & ETHERH_CP_HEARTBEAT;
240			break;
241		}
242		break;
243
244	default:
245		stat = 0;
246		break;
247	}
248
249	return stat != 0;
250}
251
252/*
253 * Configure the interface.  Note that we ignore the other
254 * parts of ifmap, since its mostly meaningless for this driver.
255 */
256static int etherh_set_config(struct net_device *dev, struct ifmap *map)
257{
258	switch (map->port) {
259	case IF_PORT_10BASE2:
260	case IF_PORT_10BASET:
261		/*
262		 * If the user explicitly sets the interface
263		 * media type, turn off automedia detection.
264		 */
265		dev->flags &= ~IFF_AUTOMEDIA;
266		dev->if_port = map->port;
267		break;
268
269	default:
270		return -EINVAL;
271	}
272
273	etherh_setif(dev);
274
275	return 0;
276}
277
278/*
279 * Reset the 8390 (hard reset).  Note that we can't actually do this.
280 */
281static void
282etherh_reset(struct net_device *dev)
283{
284	struct ei_device *ei_local = netdev_priv(dev);
285	void __iomem *addr = (void __iomem *)dev->base_addr;
286
287	writeb(E8390_NODMA+E8390_PAGE0+E8390_STOP, addr);
288
289	/*
290	 * See if we need to change the interface type.
291	 * Note that we use 'interface_num' as a flag
292	 * to indicate that we need to change the media.
293	 */
294	if (dev->flags & IFF_AUTOMEDIA && ei_local->interface_num) {
295		ei_local->interface_num = 0;
296
297		if (dev->if_port == IF_PORT_10BASET)
298			dev->if_port = IF_PORT_10BASE2;
299		else
300			dev->if_port = IF_PORT_10BASET;
301
302		etherh_setif(dev);
303	}
304}
305
306/*
307 * Write a block of data out to the 8390
308 */
309static void
310etherh_block_output (struct net_device *dev, int count, const unsigned char *buf, int start_page)
311{
312	struct ei_device *ei_local = netdev_priv(dev);
313	unsigned long dma_start;
314	void __iomem *dma_base, *addr;
315
316	if (ei_local->dmaing) {
317		netdev_err(dev, "DMAing conflict in etherh_block_input: "
318			   " DMAstat %d irqlock %d\n",
319			   ei_local->dmaing, ei_local->irqlock);
320		return;
321	}
322
323	/*
324	 * Make sure we have a round number of bytes if we're in word mode.
325	 */
326	if (count & 1 && ei_local->word16)
327		count++;
328
329	ei_local->dmaing = 1;
330
331	addr = (void __iomem *)dev->base_addr;
332	dma_base = etherh_priv(dev)->dma_base;
333
334	count = (count + 1) & ~1;
335	writeb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD);
336
337	writeb (0x42, addr + EN0_RCNTLO);
338	writeb (0x00, addr + EN0_RCNTHI);
339	writeb (0x42, addr + EN0_RSARLO);
340	writeb (0x00, addr + EN0_RSARHI);
341	writeb (E8390_RREAD | E8390_START, addr + E8390_CMD);
342
343	udelay (1);
344
345	writeb (ENISR_RDC, addr + EN0_ISR);
346	writeb (count, addr + EN0_RCNTLO);
347	writeb (count >> 8, addr + EN0_RCNTHI);
348	writeb (0, addr + EN0_RSARLO);
349	writeb (start_page, addr + EN0_RSARHI);
350	writeb (E8390_RWRITE | E8390_START, addr + E8390_CMD);
351
352	if (ei_local->word16)
353		writesw (dma_base, buf, count >> 1);
354	else
355		writesb (dma_base, buf, count);
356
357	dma_start = jiffies;
358
359	while ((readb (addr + EN0_ISR) & ENISR_RDC) == 0)
360		if (time_after(jiffies, dma_start + 2*HZ/100)) { /* 20ms */
361			netdev_warn(dev, "timeout waiting for TX RDC\n");
362			etherh_reset (dev);
363			__NS8390_init (dev, 1);
364			break;
365		}
366
367	writeb (ENISR_RDC, addr + EN0_ISR);
368	ei_local->dmaing = 0;
369}
370
371/*
372 * Read a block of data from the 8390
373 */
374static void
375etherh_block_input (struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
376{
377	struct ei_device *ei_local = netdev_priv(dev);
378	unsigned char *buf;
379	void __iomem *dma_base, *addr;
380
381	if (ei_local->dmaing) {
382		netdev_err(dev, "DMAing conflict in etherh_block_input: "
383			   " DMAstat %d irqlock %d\n",
384			   ei_local->dmaing, ei_local->irqlock);
385		return;
386	}
387
388	ei_local->dmaing = 1;
389
390	addr = (void __iomem *)dev->base_addr;
391	dma_base = etherh_priv(dev)->dma_base;
392
393	buf = skb->data;
394	writeb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD);
395	writeb (count, addr + EN0_RCNTLO);
396	writeb (count >> 8, addr + EN0_RCNTHI);
397	writeb (ring_offset, addr + EN0_RSARLO);
398	writeb (ring_offset >> 8, addr + EN0_RSARHI);
399	writeb (E8390_RREAD | E8390_START, addr + E8390_CMD);
400
401	if (ei_local->word16) {
402		readsw (dma_base, buf, count >> 1);
403		if (count & 1)
404			buf[count - 1] = readb (dma_base);
405	} else
406		readsb (dma_base, buf, count);
407
408	writeb (ENISR_RDC, addr + EN0_ISR);
409	ei_local->dmaing = 0;
410}
411
412/*
413 * Read a header from the 8390
414 */
415static void
416etherh_get_header (struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
417{
418	struct ei_device *ei_local = netdev_priv(dev);
419	void __iomem *dma_base, *addr;
420
421	if (ei_local->dmaing) {
422		netdev_err(dev, "DMAing conflict in etherh_get_header: "
423			   " DMAstat %d irqlock %d\n",
424			   ei_local->dmaing, ei_local->irqlock);
425		return;
426	}
427
428	ei_local->dmaing = 1;
429
430	addr = (void __iomem *)dev->base_addr;
431	dma_base = etherh_priv(dev)->dma_base;
432
433	writeb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD);
434	writeb (sizeof (*hdr), addr + EN0_RCNTLO);
435	writeb (0, addr + EN0_RCNTHI);
436	writeb (0, addr + EN0_RSARLO);
437	writeb (ring_page, addr + EN0_RSARHI);
438	writeb (E8390_RREAD | E8390_START, addr + E8390_CMD);
439
440	if (ei_local->word16)
441		readsw (dma_base, hdr, sizeof (*hdr) >> 1);
442	else
443		readsb (dma_base, hdr, sizeof (*hdr));
444
445	writeb (ENISR_RDC, addr + EN0_ISR);
446	ei_local->dmaing = 0;
447}
448
449/*
450 * Open/initialize the board.  This is called (in the current kernel)
451 * sometime after booting when the 'ifconfig' program is run.
452 *
453 * This routine should set everything up anew at each open, even
454 * registers that "should" only need to be set once at boot, so that
455 * there is non-reboot way to recover if something goes wrong.
456 */
457static int
458etherh_open(struct net_device *dev)
459{
460	struct ei_device *ei_local = netdev_priv(dev);
461
462	if (request_irq(dev->irq, __ei_interrupt, 0, dev->name, dev))
463		return -EAGAIN;
464
465	/*
466	 * Make sure that we aren't going to change the
467	 * media type on the next reset - we are about to
468	 * do automedia manually now.
469	 */
470	ei_local->interface_num = 0;
471
472	/*
473	 * If we are doing automedia detection, do it now.
474	 * This is more reliable than the 8390's detection.
475	 */
476	if (dev->flags & IFF_AUTOMEDIA) {
477		dev->if_port = IF_PORT_10BASET;
478		etherh_setif(dev);
479		mdelay(1);
480		if (!etherh_getifstat(dev)) {
481			dev->if_port = IF_PORT_10BASE2;
482			etherh_setif(dev);
483		}
484	} else
485		etherh_setif(dev);
486
487	etherh_reset(dev);
488	__ei_open(dev);
489
490	return 0;
491}
492
493/*
494 * The inverse routine to etherh_open().
495 */
496static int
497etherh_close(struct net_device *dev)
498{
499	__ei_close (dev);
500	free_irq (dev->irq, dev);
501	return 0;
502}
503
504/*
505 * Initialisation
506 */
507
508static void __init etherh_banner(void)
509{
510	static int version_printed;
511
512	if ((etherh_msg_enable & NETIF_MSG_DRV) && (version_printed++ == 0))
513		pr_info("%s", version);
514}
515
516/*
517 * Read the ethernet address string from the on board rom.
518 * This is an ascii string...
519 */
520static int etherh_addr(char *addr, struct expansion_card *ec)
521{
522	struct in_chunk_dir cd;
523	char *s;
524	
525	if (!ecard_readchunk(&cd, ec, 0xf5, 0)) {
526		printk(KERN_ERR "%s: unable to read module description string\n",
527		       dev_name(&ec->dev));
528		goto no_addr;
529	}
530
531	s = strchr(cd.d.string, '(');
532	if (s) {
533		int i;
534
535		for (i = 0; i < 6; i++) {
536			addr[i] = simple_strtoul(s + 1, &s, 0x10);
537			if (*s != (i == 5? ')' : ':'))
538				break;
539		}
540
541		if (i == 6)
542			return 0;
543	}
544
545	printk(KERN_ERR "%s: unable to parse MAC address: %s\n",
546	       dev_name(&ec->dev), cd.d.string);
547
548 no_addr:
549	return -ENODEV;
550}
551
552/*
553 * Create an ethernet address from the system serial number.
554 */
555static int __init etherm_addr(char *addr)
556{
557	unsigned int serial;
558
559	if (system_serial_low == 0 && system_serial_high == 0)
560		return -ENODEV;
561
562	serial = system_serial_low | system_serial_high;
563
564	addr[0] = 0;
565	addr[1] = 0;
566	addr[2] = 0xa4;
567	addr[3] = 0x10 + (serial >> 24);
568	addr[4] = serial >> 16;
569	addr[5] = serial >> 8;
570	return 0;
571}
572
573static void etherh_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
574{
575	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
576	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
577	strlcpy(info->bus_info, dev_name(dev->dev.parent),
578		sizeof(info->bus_info));
579}
580
581static int etherh_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
 
582{
583	cmd->supported	= etherh_priv(dev)->supported;
584	ethtool_cmd_speed_set(cmd, SPEED_10);
585	cmd->duplex	= DUPLEX_HALF;
586	cmd->port	= dev->if_port == IF_PORT_10BASET ? PORT_TP : PORT_BNC;
587	cmd->autoneg	= (dev->flags & IFF_AUTOMEDIA ?
588			   AUTONEG_ENABLE : AUTONEG_DISABLE);
 
589	return 0;
590}
591
592static int etherh_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
 
593{
594	switch (cmd->autoneg) {
595	case AUTONEG_ENABLE:
596		dev->flags |= IFF_AUTOMEDIA;
597		break;
598
599	case AUTONEG_DISABLE:
600		switch (cmd->port) {
601		case PORT_TP:
602			dev->if_port = IF_PORT_10BASET;
603			break;
604
605		case PORT_BNC:
606			dev->if_port = IF_PORT_10BASE2;
607			break;
608
609		default:
610			return -EINVAL;
611		}
612		dev->flags &= ~IFF_AUTOMEDIA;
613		break;
614
615	default:
616		return -EINVAL;
617	}
618
619	etherh_setif(dev);
620
621	return 0;
622}
623
624static u32 etherh_get_msglevel(struct net_device *dev)
625{
626	struct ei_device *ei_local = netdev_priv(dev);
627
628	return ei_local->msg_enable;
629}
630
631static void etherh_set_msglevel(struct net_device *dev, u32 v)
632{
633	struct ei_device *ei_local = netdev_priv(dev);
634
635	ei_local->msg_enable = v;
636}
637
638static const struct ethtool_ops etherh_ethtool_ops = {
639	.get_settings	= etherh_get_settings,
640	.set_settings	= etherh_set_settings,
641	.get_drvinfo	= etherh_get_drvinfo,
642	.get_ts_info	= ethtool_op_get_ts_info,
643	.get_msglevel	= etherh_get_msglevel,
644	.set_msglevel	= etherh_set_msglevel,
645};
646
647static const struct net_device_ops etherh_netdev_ops = {
648	.ndo_open		= etherh_open,
649	.ndo_stop		= etherh_close,
650	.ndo_set_config		= etherh_set_config,
651	.ndo_start_xmit		= __ei_start_xmit,
652	.ndo_tx_timeout		= __ei_tx_timeout,
653	.ndo_get_stats		= __ei_get_stats,
654	.ndo_set_rx_mode	= __ei_set_multicast_list,
655	.ndo_validate_addr	= eth_validate_addr,
656	.ndo_set_mac_address	= eth_mac_addr,
657#ifdef CONFIG_NET_POLL_CONTROLLER
658	.ndo_poll_controller	= __ei_poll,
659#endif
660};
661
662static u32 etherh_regoffsets[16];
663static u32 etherm_regoffsets[16];
664
665static int
666etherh_probe(struct expansion_card *ec, const struct ecard_id *id)
667{
668	const struct etherh_data *data = id->data;
669	struct ei_device *ei_local;
670	struct net_device *dev;
671	struct etherh_priv *eh;
 
672	int ret;
673
674	etherh_banner();
675
676	ret = ecard_request_resources(ec);
677	if (ret)
678		goto out;
679
680	dev = ____alloc_ei_netdev(sizeof(struct etherh_priv));
681	if (!dev) {
682		ret = -ENOMEM;
683		goto release;
684	}
685
686	SET_NETDEV_DEV(dev, &ec->dev);
687
688	dev->netdev_ops		= &etherh_netdev_ops;
689	dev->irq		= ec->irq;
690	dev->ethtool_ops	= &etherh_ethtool_ops;
691
692	if (data->supported & SUPPORTED_Autoneg)
693		dev->flags |= IFF_AUTOMEDIA;
694	if (data->supported & SUPPORTED_TP) {
695		dev->flags |= IFF_PORTSEL;
696		dev->if_port = IF_PORT_10BASET;
697	} else if (data->supported & SUPPORTED_BNC) {
698		dev->flags |= IFF_PORTSEL;
699		dev->if_port = IF_PORT_10BASE2;
700	} else
701		dev->if_port = IF_PORT_UNKNOWN;
702
703	eh = etherh_priv(dev);
704	eh->supported		= data->supported;
705	eh->ctrl		= 0;
706	eh->id			= ec->cid.product;
707	eh->memc		= ecardm_iomap(ec, ECARD_RES_MEMC, 0, PAGE_SIZE);
708	if (!eh->memc) {
709		ret = -ENOMEM;
710		goto free;
711	}
712
713	eh->ctrl_port = eh->memc;
714	if (data->ctrl_ioc) {
715		eh->ioc_fast = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, PAGE_SIZE);
716		if (!eh->ioc_fast) {
717			ret = -ENOMEM;
718			goto free;
719		}
720		eh->ctrl_port = eh->ioc_fast;
721	}
722
723	dev->base_addr = (unsigned long)eh->memc + data->ns8390_offset;
724	eh->dma_base = eh->memc + data->dataport_offset;
725	eh->ctrl_port += data->ctrlport_offset;
726
727	/*
728	 * IRQ and control port handling - only for non-NIC slot cards.
729	 */
730	if (ec->slot_no != 8) {
731		ecard_setirq(ec, &etherh_ops, eh);
732	} else {
733		/*
734		 * If we're in the NIC slot, make sure the IRQ is enabled
735		 */
736		etherh_set_ctrl(eh, ETHERH_CP_IE);
737	}
738
739	ei_local = netdev_priv(dev);
740	spin_lock_init(&ei_local->page_lock);
741
742	if (ec->cid.product == PROD_ANT_ETHERM) {
743		etherm_addr(dev->dev_addr);
744		ei_local->reg_offset = etherm_regoffsets;
745	} else {
746		etherh_addr(dev->dev_addr, ec);
747		ei_local->reg_offset = etherh_regoffsets;
748	}
 
749
750	ei_local->name          = dev->name;
751	ei_local->word16        = 1;
752	ei_local->tx_start_page = data->tx_start_page;
753	ei_local->rx_start_page = ei_local->tx_start_page + TX_PAGES;
754	ei_local->stop_page     = data->stop_page;
755	ei_local->reset_8390    = etherh_reset;
756	ei_local->block_input   = etherh_block_input;
757	ei_local->block_output  = etherh_block_output;
758	ei_local->get_8390_hdr  = etherh_get_header;
759	ei_local->interface_num = 0;
760	ei_local->msg_enable = etherh_msg_enable;
761
762	etherh_reset(dev);
763	__NS8390_init(dev, 0);
764
765	ret = register_netdev(dev);
766	if (ret)
767		goto free;
768
769	netdev_info(dev, "%s in slot %d, %pM\n",
770		    data->name, ec->slot_no, dev->dev_addr);
771
772	ecard_set_drvdata(ec, dev);
773
774	return 0;
775
776 free:
777	free_netdev(dev);
778 release:
779	ecard_release_resources(ec);
780 out:
781	return ret;
782}
783
784static void etherh_remove(struct expansion_card *ec)
785{
786	struct net_device *dev = ecard_get_drvdata(ec);
787
788	ecard_set_drvdata(ec, NULL);
789
790	unregister_netdev(dev);
791
792	free_netdev(dev);
793
794	ecard_release_resources(ec);
795}
796
797static struct etherh_data etherm_data = {
798	.ns8390_offset		= ETHERM_NS8390,
799	.dataport_offset	= ETHERM_NS8390 + ETHERM_DATAPORT,
800	.ctrlport_offset	= ETHERM_NS8390 + ETHERM_CTRLPORT,
801	.name			= "ANT EtherM",
802	.supported		= SUPPORTED_10baseT_Half,
803	.tx_start_page		= ETHERM_TX_START_PAGE,
804	.stop_page		= ETHERM_STOP_PAGE,
805};
806
807static struct etherh_data etherlan500_data = {
808	.ns8390_offset		= ETHERH500_NS8390,
809	.dataport_offset	= ETHERH500_NS8390 + ETHERH500_DATAPORT,
810	.ctrlport_offset	= ETHERH500_CTRLPORT,
811	.ctrl_ioc		= 1,
812	.name			= "i3 EtherH 500",
813	.supported		= SUPPORTED_10baseT_Half,
814	.tx_start_page		= ETHERH_TX_START_PAGE,
815	.stop_page		= ETHERH_STOP_PAGE,
816};
817
818static struct etherh_data etherlan600_data = {
819	.ns8390_offset		= ETHERH600_NS8390,
820	.dataport_offset	= ETHERH600_NS8390 + ETHERH600_DATAPORT,
821	.ctrlport_offset	= ETHERH600_NS8390 + ETHERH600_CTRLPORT,
822	.name			= "i3 EtherH 600",
823	.supported		= SUPPORTED_10baseT_Half | SUPPORTED_TP | SUPPORTED_BNC | SUPPORTED_Autoneg,
824	.tx_start_page		= ETHERH_TX_START_PAGE,
825	.stop_page		= ETHERH_STOP_PAGE,
826};
827
828static struct etherh_data etherlan600a_data = {
829	.ns8390_offset		= ETHERH600_NS8390,
830	.dataport_offset	= ETHERH600_NS8390 + ETHERH600_DATAPORT,
831	.ctrlport_offset	= ETHERH600_NS8390 + ETHERH600_CTRLPORT,
832	.name			= "i3 EtherH 600A",
833	.supported		= SUPPORTED_10baseT_Half | SUPPORTED_TP | SUPPORTED_BNC | SUPPORTED_Autoneg,
834	.tx_start_page		= ETHERH_TX_START_PAGE,
835	.stop_page		= ETHERH_STOP_PAGE,
836};
837
838static const struct ecard_id etherh_ids[] = {
839	{ MANU_ANT, PROD_ANT_ETHERM,      &etherm_data       },
840	{ MANU_I3,  PROD_I3_ETHERLAN500,  &etherlan500_data  },
841	{ MANU_I3,  PROD_I3_ETHERLAN600,  &etherlan600_data  },
842	{ MANU_I3,  PROD_I3_ETHERLAN600A, &etherlan600a_data },
843	{ 0xffff,   0xffff }
844};
845
846static struct ecard_driver etherh_driver = {
847	.probe		= etherh_probe,
848	.remove		= etherh_remove,
849	.id_table	= etherh_ids,
850	.drv = {
851		.name	= DRV_NAME,
852	},
853};
854
855static int __init etherh_init(void)
856{
857	int i;
858
859	for (i = 0; i < 16; i++) {
860		etherh_regoffsets[i] = i << 2;
861		etherm_regoffsets[i] = i << 5;
862	}
863
864	return ecard_register_driver(&etherh_driver);
865}
866
867static void __exit etherh_exit(void)
868{
869	ecard_remove_driver(&etherh_driver);
870}
871
872module_init(etherh_init);
873module_exit(etherh_exit);