Release 4.7 drivers/net/ethernet/amd/hplance.c
  
  
/* hplance.c  : the  Linux/hp300/lance ethernet driver
 *
 * Copyright (C) 05/1998 Peter Maydell <pmaydell@chiark.greenend.org.uk>
 * Based on the Sun Lance driver and the NetBSD HP Lance driver
 * Uses the generic 7990.c LANCE code.
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/string.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/errno.h>
/* Used for the temporal inet entries and routing */
#include <linux/socket.h>
#include <linux/route.h>
#include <linux/dio.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <asm/io.h>
#include <asm/pgtable.h>
#include "hplance.h"
/* We have 16392 bytes of RAM for the init block and buffers. This places
 * an upper limit on the number of buffers we can use. NetBSD uses 8 Rx
 * buffers and 2 Tx buffers, it takes (8 + 2) * 1544 bytes.
 */
#define LANCE_LOG_TX_BUFFERS 1
#define LANCE_LOG_RX_BUFFERS 3
#include "7990.h"                                 /* use generic LANCE code */
/* Our private data structure */
struct hplance_private {
	
struct lance_private lance;
};
/* function prototypes... This is easy because all the grot is in the
 * generic LANCE support. All we have to support is probing for boards,
 * plus board-specific init, open and close actions.
 * Oh, and we need to tell the generic code how to read and write LANCE registers...
 */
static int hplance_init_one(struct dio_dev *d, const struct dio_device_id *ent);
static void hplance_init(struct net_device *dev, struct dio_dev *d);
static void hplance_remove_one(struct dio_dev *d);
static void hplance_writerap(void *priv, unsigned short value);
static void hplance_writerdp(void *priv, unsigned short value);
static unsigned short hplance_readrdp(void *priv);
static int hplance_open(struct net_device *dev);
static int hplance_close(struct net_device *dev);
static struct dio_device_id hplance_dio_tbl[] = {
	{ DIO_ID_LAN },
	{ 0 }
};
static struct dio_driver hplance_driver = {
	.name      = "hplance",
	.id_table  = hplance_dio_tbl,
	.probe     = hplance_init_one,
	.remove    = hplance_remove_one,
};
static const struct net_device_ops hplance_netdev_ops = {
	.ndo_open		= hplance_open,
	.ndo_stop		= hplance_close,
	.ndo_start_xmit		= lance_start_xmit,
	.ndo_set_rx_mode	= lance_set_multicast,
	.ndo_change_mtu		= eth_change_mtu,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= lance_poll,
#endif
};
/* Find all the HP Lance boards and initialise them... */
static int hplance_init_one(struct dio_dev *d, const struct dio_device_id *ent)
{
	struct net_device *dev;
	int err = -ENOMEM;
	dev = alloc_etherdev(sizeof(struct hplance_private));
	if (!dev)
		goto out;
	err = -EBUSY;
	if (!request_mem_region(dio_resource_start(d),
				dio_resource_len(d), d->name))
		goto out_free_netdev;
	hplance_init(dev, d);
	err = register_netdev(dev);
	if (err)
		goto out_release_mem_region;
	dio_set_drvdata(d, dev);
	printk(KERN_INFO "%s: %s; select code %d, addr %pM, irq %d\n",
	       dev->name, d->name, d->scode, dev->dev_addr, d->ipl);
	return 0;
 out_release_mem_region:
	release_mem_region(dio_resource_start(d), dio_resource_len(d));
 out_free_netdev:
	free_netdev(dev);
 out:
	return err;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| andrew morton | andrew morton | 45 | 28.30% | 1 | 12.50% | 
| geert uytterhoeven | geert uytterhoeven | 40 | 25.16% | 1 | 12.50% | 
| stephen hemminger | stephen hemminger | 33 | 20.75% | 1 | 12.50% | 
| kars de jong | kars de jong | 25 | 15.72% | 1 | 12.50% | 
| pre-git | pre-git | 15 | 9.43% | 3 | 37.50% | 
| danny kukawka | danny kukawka | 1 | 0.63% | 1 | 12.50% | 
 | Total | 159 | 100.00% | 8 | 100.00% | 
static void hplance_remove_one(struct dio_dev *d)
{
	struct net_device *dev = dio_get_drvdata(d);
	unregister_netdev(dev);
	release_mem_region(dio_resource_start(d), dio_resource_len(d));
	free_netdev(dev);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| stephen hemminger | stephen hemminger | 14 | 31.82% | 1 | 20.00% | 
| geert uytterhoeven | geert uytterhoeven | 14 | 31.82% | 1 | 20.00% | 
| andrew morton | andrew morton | 13 | 29.55% | 1 | 20.00% | 
| randy dunlap | randy dunlap | 2 | 4.55% | 1 | 20.00% | 
| pre-git | pre-git | 1 | 2.27% | 1 | 20.00% | 
 | Total | 44 | 100.00% | 5 | 100.00% | 
/* Initialise a single lance board at the given DIO device */
static void hplance_init(struct net_device *dev, struct dio_dev *d)
{
	unsigned long va = (d->resource.start + DIO_VIRADDRBASE);
	struct hplance_private *lp;
	int i;
	/* reset the board */
	out_8(va + DIO_IDOFF, 0xff);
	udelay(100);                              /* ariba! ariba! udelay! udelay! */
	/* Fill the dev fields */
	dev->base_addr = va;
	dev->netdev_ops = &hplance_netdev_ops;
	dev->dma = 0;
	for (i = 0; i < 6; i++) {
		/* The NVRAM holds our ethernet address, one nibble per byte,
                 * at bytes NVRAMOFF+1,3,5,7,9...
                 */
		dev->dev_addr[i] = ((in_8(va + HPLANCE_NVRAMOFF + i*4 + 1) & 0xF) << 4)
			| (in_8(va + HPLANCE_NVRAMOFF + i*4 + 3) & 0xF);
	}
	lp = netdev_priv(dev);
	lp->lance.name = d->name;
	lp->lance.base = va;
	lp->lance.init_block = (struct lance_init_block *)(va + HPLANCE_MEMOFF); /* CPU addr */
	lp->lance.lance_init_block = NULL;              /* LANCE addr of same RAM */
	lp->lance.busmaster_regval = LE_C3_BSWP;        /* we're bigendian */
	lp->lance.irq = d->ipl;
	lp->lance.writerap = hplance_writerap;
	lp->lance.writerdp = hplance_writerdp;
	lp->lance.readrdp = hplance_readrdp;
	lp->lance.lance_log_rx_bufs = LANCE_LOG_RX_BUFFERS;
	lp->lance.lance_log_tx_bufs = LANCE_LOG_TX_BUFFERS;
	lp->lance.rx_ring_mod_mask = RX_RING_MOD_MASK;
	lp->lance.tx_ring_mod_mask = TX_RING_MOD_MASK;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 225 | 85.88% | 3 | 27.27% | 
| geert uytterhoeven | geert uytterhoeven | 30 | 11.45% | 4 | 36.36% | 
| randy dunlap | randy dunlap | 3 | 1.15% | 1 | 9.09% | 
| alexander beregalov | alexander beregalov | 2 | 0.76% | 1 | 9.09% | 
| stephen hemminger | stephen hemminger | 1 | 0.38% | 1 | 9.09% | 
| al viro | al viro | 1 | 0.38% | 1 | 9.09% | 
 | Total | 262 | 100.00% | 11 | 100.00% | 
/* This is disgusting. We have to check the DIO status register for ack every
 * time we read or write the LANCE registers.
 */
static void hplance_writerap(void *priv, unsigned short value)
{
	struct lance_private *lp = (struct lance_private *)priv;
	do {
		out_be16(lp->base + HPLANCE_REGOFF + LANCE_RAP, value);
	} while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 31 | 51.67% | 1 | 33.33% | 
| geert uytterhoeven | geert uytterhoeven | 29 | 48.33% | 2 | 66.67% | 
 | Total | 60 | 100.00% | 3 | 100.00% | 
static void hplance_writerdp(void *priv, unsigned short value)
{
	struct lance_private *lp = (struct lance_private *)priv;
	do {
		out_be16(lp->base + HPLANCE_REGOFF + LANCE_RDP, value);
	} while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 31 | 51.67% | 1 | 33.33% | 
| geert uytterhoeven | geert uytterhoeven | 29 | 48.33% | 2 | 66.67% | 
 | Total | 60 | 100.00% | 3 | 100.00% | 
static unsigned short hplance_readrdp(void *priv)
{
	struct lance_private *lp = (struct lance_private *)priv;
	__u16 value;
	do {
		value = in_be16(lp->base + HPLANCE_REGOFF + LANCE_RDP);
	} while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
	return value;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| geert uytterhoeven | geert uytterhoeven | 32 | 50.79% | 2 | 66.67% | 
| pre-git | pre-git | 31 | 49.21% | 1 | 33.33% | 
 | Total | 63 | 100.00% | 3 | 100.00% | 
static int hplance_open(struct net_device *dev)
{
	int status;
	struct lance_private *lp = netdev_priv(dev);
	status = lance_open(dev);                 /* call generic lance open code */
	if (status)
		return status;
	/* enable interrupts at board level. */
	out_8(lp->base + HPLANCE_STATUS, LE_IE);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 43 | 79.63% | 2 | 40.00% | 
| geert uytterhoeven | geert uytterhoeven | 8 | 14.81% | 2 | 40.00% | 
| randy dunlap | randy dunlap | 3 | 5.56% | 1 | 20.00% | 
 | Total | 54 | 100.00% | 5 | 100.00% | 
static int hplance_close(struct net_device *dev)
{
	struct lance_private *lp = netdev_priv(dev);
	out_8(lp->base + HPLANCE_STATUS, 0);	/* disable interrupts at boardlevel */
	lance_close(dev);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 30 | 73.17% | 2 | 40.00% | 
| geert uytterhoeven | geert uytterhoeven | 8 | 19.51% | 2 | 40.00% | 
| randy dunlap | randy dunlap | 3 | 7.32% | 1 | 20.00% | 
 | Total | 41 | 100.00% | 5 | 100.00% | 
static int __init hplance_init_module(void)
{
	return dio_register_driver(&hplance_driver);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 9 | 56.25% | 1 | 25.00% | 
| geert uytterhoeven | geert uytterhoeven | 5 | 31.25% | 1 | 25.00% | 
| bjorn helgaas | bjorn helgaas | 1 | 6.25% | 1 | 25.00% | 
| adrian bunk | adrian bunk | 1 | 6.25% | 1 | 25.00% | 
 | Total | 16 | 100.00% | 4 | 100.00% | 
static void __exit hplance_cleanup_module(void)
{
	dio_unregister_driver(&hplance_driver);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 8 | 53.33% | 1 | 33.33% | 
| geert uytterhoeven | geert uytterhoeven | 6 | 40.00% | 1 | 33.33% | 
| adrian bunk | adrian bunk | 1 | 6.67% | 1 | 33.33% | 
 | Total | 15 | 100.00% | 3 | 100.00% | 
module_init(hplance_init_module);
module_exit(hplance_cleanup_module);
MODULE_LICENSE("GPL");
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| pre-git | pre-git | 556 | 52.16% | 3 | 15.00% | 
| geert uytterhoeven | geert uytterhoeven | 285 | 26.74% | 4 | 20.00% | 
| stephen hemminger | stephen hemminger | 59 | 5.53% | 1 | 5.00% | 
| andrew morton | andrew morton | 58 | 5.44% | 1 | 5.00% | 
| alexander beregalov | alexander beregalov | 55 | 5.16% | 1 | 5.00% | 
| kars de jong | kars de jong | 25 | 2.35% | 1 | 5.00% | 
| randy dunlap | randy dunlap | 11 | 1.03% | 1 | 5.00% | 
| arnaldo carvalho de melo | arnaldo carvalho de melo | 9 | 0.84% | 1 | 5.00% | 
| adrian bunk | adrian bunk | 2 | 0.19% | 1 | 5.00% | 
| bjorn helgaas | bjorn helgaas | 1 | 0.09% | 1 | 5.00% | 
| amos kong | amos kong | 1 | 0.09% | 1 | 5.00% | 
| jiri pirko | jiri pirko | 1 | 0.09% | 1 | 5.00% | 
| jeff garzik | jeff garzik | 1 | 0.09% | 1 | 5.00% | 
| danny kukawka | danny kukawka | 1 | 0.09% | 1 | 5.00% | 
| al viro | al viro | 1 | 0.09% | 1 | 5.00% | 
 | Total | 1066 | 100.00% | 20 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.