Commit 3c09a47f authored by Stephen Hemminger's avatar Stephen Hemminger

[PATCH] (16/42) 3c503

Based on viro NE40-3c503
	* switched 3c503 to dynamic allocation
	* 3c503: fixed order of freeing bugs
	* 3c503: fixed IO without request_region
	* 3c503: fixed resource leaks on failure exits
	* 3c503: fixed clobbering on autoprobe
parent ac51187a
...@@ -60,7 +60,6 @@ static const char version[] = ...@@ -60,7 +60,6 @@ static const char version[] =
#include "3c503.h" #include "3c503.h"
#define WRD_COUNT 4 #define WRD_COUNT 4
int el2_probe(struct net_device *dev);
static int el2_pio_probe(struct net_device *dev); static int el2_pio_probe(struct net_device *dev);
static int el2_probe1(struct net_device *dev, int ioaddr); static int el2_probe1(struct net_device *dev, int ioaddr);
...@@ -90,11 +89,11 @@ static struct ethtool_ops netdev_ethtool_ops; ...@@ -90,11 +89,11 @@ static struct ethtool_ops netdev_ethtool_ops;
If the ethercard isn't found there is an optional probe for If the ethercard isn't found there is an optional probe for
ethercard jumpered to programmed-I/O mode. ethercard jumpered to programmed-I/O mode.
*/ */
int __init static int __init do_el2_probe(struct net_device *dev)
el2_probe(struct net_device *dev)
{ {
int *addr, addrs[] = { 0xddffe, 0xd9ffe, 0xcdffe, 0xc9ffe, 0}; int *addr, addrs[] = { 0xddffe, 0xd9ffe, 0xcdffe, 0xc9ffe, 0};
int base_addr = dev->base_addr; int base_addr = dev->base_addr;
int irq = dev->irq;
SET_MODULE_OWNER(dev); SET_MODULE_OWNER(dev);
...@@ -104,16 +103,13 @@ el2_probe(struct net_device *dev) ...@@ -104,16 +103,13 @@ el2_probe(struct net_device *dev)
return -ENXIO; return -ENXIO;
for (addr = addrs; *addr; addr++) { for (addr = addrs; *addr; addr++) {
int i; unsigned base_bits = isa_readb(*addr);
unsigned int base_bits = isa_readb(*addr); int i = ffs(base_bits) - 1;
/* Find first set bit. */ if (i == -1 || base_bits != (1 << i))
for(i = 7; i >= 0; i--, base_bits >>= 1)
if (base_bits & 0x1)
break;
if (base_bits != 1)
continue; continue;
if (el2_probe1(dev, netcard_portlist[i]) == 0) if (el2_probe1(dev, netcard_portlist[i]) == 0)
return 0; return 0;
dev->irq = irq;
} }
#if ! defined(no_probe_nonshared_memory) #if ! defined(no_probe_nonshared_memory)
return el2_pio_probe(dev); return el2_pio_probe(dev);
...@@ -128,20 +124,57 @@ static int __init ...@@ -128,20 +124,57 @@ static int __init
el2_pio_probe(struct net_device *dev) el2_pio_probe(struct net_device *dev)
{ {
int i; int i;
int base_addr = dev ? dev->base_addr : 0; int base_addr = dev->base_addr;
int irq = dev->irq;
if (base_addr > 0x1ff) /* Check a single specified location. */ if (base_addr > 0x1ff) /* Check a single specified location. */
return el2_probe1(dev, base_addr); return el2_probe1(dev, base_addr);
else if (base_addr != 0) /* Don't probe at all. */ else if (base_addr != 0) /* Don't probe at all. */
return -ENXIO; return -ENXIO;
for (i = 0; netcard_portlist[i]; i++) for (i = 0; netcard_portlist[i]; i++) {
if (el2_probe1(dev, netcard_portlist[i]) == 0) if (el2_probe1(dev, netcard_portlist[i]) == 0)
return 0; return 0;
dev->irq = irq;
}
return -ENODEV; return -ENODEV;
} }
static void cleanup_card(struct net_device *dev)
{
/* NB: el2_close() handles free_irq */
release_region(dev->base_addr, EL2_IO_EXTENT);
kfree(dev->priv);
}
struct net_device * __init el2_probe(int unit)
{
struct net_device *dev = alloc_etherdev(0);
int err;
if (!dev)
return ERR_PTR(-ENOMEM);
sprintf(dev->name, "eth%d", unit);
netdev_boot_setup_check(dev);
dev->priv = NULL; /* until all 8390-based use alloc_etherdev() */
err = do_el2_probe(dev);
if (err)
goto out;
err = register_netdev(dev);
if (err)
goto out1;
return dev;
out1:
cleanup_card(dev);
out:
free_netdev(dev);
return ERR_PTR(err);
}
/* Probe for the Etherlink II card at I/O port base IOADDR, /* Probe for the Etherlink II card at I/O port base IOADDR,
returning non-zero on success. If found, set the station returning non-zero on success. If found, set the station
address and memory parameters in DEVICE. */ address and memory parameters in DEVICE. */
...@@ -152,15 +185,19 @@ el2_probe1(struct net_device *dev, int ioaddr) ...@@ -152,15 +185,19 @@ el2_probe1(struct net_device *dev, int ioaddr)
static unsigned version_printed; static unsigned version_printed;
unsigned long vendor_id; unsigned long vendor_id;
/* FIXME: code reads ioaddr + 0x400, we request ioaddr + 16 */
if (!request_region(ioaddr, EL2_IO_EXTENT, dev->name)) if (!request_region(ioaddr, EL2_IO_EXTENT, dev->name))
return -EBUSY; return -EBUSY;
if (!request_region(ioaddr + 0x400, 8, dev->name)) {
retval = -EBUSY;
goto out;
}
/* Reset and/or avoid any lurking NE2000 */ /* Reset and/or avoid any lurking NE2000 */
if (inb(ioaddr + 0x408) == 0xff) { if (inb(ioaddr + 0x408) == 0xff) {
mdelay(1); mdelay(1);
retval = -ENODEV; retval = -ENODEV;
goto out; goto out1;
} }
/* We verify that it's a 3C503 board by checking the first three octets /* We verify that it's a 3C503 board by checking the first three octets
...@@ -171,7 +208,7 @@ el2_probe1(struct net_device *dev, int ioaddr) ...@@ -171,7 +208,7 @@ el2_probe1(struct net_device *dev, int ioaddr)
if ( (iobase_reg & (iobase_reg - 1)) if ( (iobase_reg & (iobase_reg - 1))
|| (membase_reg & (membase_reg - 1))) { || (membase_reg & (membase_reg - 1))) {
retval = -ENODEV; retval = -ENODEV;
goto out; goto out1;
} }
saved_406 = inb_p(ioaddr + 0x406); saved_406 = inb_p(ioaddr + 0x406);
outb_p(ECNTRL_RESET|ECNTRL_THIN, ioaddr + 0x406); /* Reset it... */ outb_p(ECNTRL_RESET|ECNTRL_THIN, ioaddr + 0x406); /* Reset it... */
...@@ -184,7 +221,7 @@ el2_probe1(struct net_device *dev, int ioaddr) ...@@ -184,7 +221,7 @@ el2_probe1(struct net_device *dev, int ioaddr)
/* Restore the register we frobbed. */ /* Restore the register we frobbed. */
outb(saved_406, ioaddr + 0x406); outb(saved_406, ioaddr + 0x406);
retval = -ENODEV; retval = -ENODEV;
goto out; goto out1;
} }
if (ei_debug && version_printed++ == 0) if (ei_debug && version_printed++ == 0)
...@@ -195,7 +232,7 @@ el2_probe1(struct net_device *dev, int ioaddr) ...@@ -195,7 +232,7 @@ el2_probe1(struct net_device *dev, int ioaddr)
if (ethdev_init(dev)) { if (ethdev_init(dev)) {
printk ("3c503: unable to allocate memory for dev->priv.\n"); printk ("3c503: unable to allocate memory for dev->priv.\n");
retval = -ENOMEM; retval = -ENOMEM;
goto out; goto out1;
} }
printk("%s: 3c503 at i/o base %#3x, node ", dev->name, ioaddr); printk("%s: 3c503 at i/o base %#3x, node ", dev->name, ioaddr);
...@@ -322,7 +359,10 @@ el2_probe1(struct net_device *dev, int ioaddr) ...@@ -322,7 +359,10 @@ el2_probe1(struct net_device *dev, int ioaddr)
printk("\n%s: %s, %dkB RAM, using programmed I/O (REJUMPER for SHARED MEMORY).\n", printk("\n%s: %s, %dkB RAM, using programmed I/O (REJUMPER for SHARED MEMORY).\n",
dev->name, ei_status.name, (wordlength+1)<<3); dev->name, ei_status.name, (wordlength+1)<<3);
} }
release_region(ioaddr + 0x400, 8);
return 0; return 0;
out1:
release_region(ioaddr + 0x400, 8);
out: out:
release_region(ioaddr, EL2_IO_EXTENT); release_region(ioaddr, EL2_IO_EXTENT);
return retval; return retval;
...@@ -633,7 +673,7 @@ static struct ethtool_ops netdev_ethtool_ops = { ...@@ -633,7 +673,7 @@ static struct ethtool_ops netdev_ethtool_ops = {
#ifdef MODULE #ifdef MODULE
#define MAX_EL2_CARDS 4 /* Max number of EL2 cards per module */ #define MAX_EL2_CARDS 4 /* Max number of EL2 cards per module */
static struct net_device dev_el2[MAX_EL2_CARDS]; static struct net_device *dev_el2[MAX_EL2_CARDS];
static int io[MAX_EL2_CARDS]; static int io[MAX_EL2_CARDS];
static int irq[MAX_EL2_CARDS]; static int irq[MAX_EL2_CARDS];
static int xcvr[MAX_EL2_CARDS]; /* choose int. or ext. xcvr */ static int xcvr[MAX_EL2_CARDS]; /* choose int. or ext. xcvr */
...@@ -651,28 +691,35 @@ ISA device autoprobes on a running machine are not recommended. */ ...@@ -651,28 +691,35 @@ ISA device autoprobes on a running machine are not recommended. */
int int
init_module(void) init_module(void)
{ {
struct net_device *dev;
int this_dev, found = 0; int this_dev, found = 0;
for (this_dev = 0; this_dev < MAX_EL2_CARDS; this_dev++) { for (this_dev = 0; this_dev < MAX_EL2_CARDS; this_dev++) {
struct net_device *dev = &dev_el2[this_dev];
dev->irq = irq[this_dev];
dev->base_addr = io[this_dev];
dev->mem_end = xcvr[this_dev]; /* low 4bits = xcvr sel. */
dev->init = el2_probe;
if (io[this_dev] == 0) { if (io[this_dev] == 0) {
if (this_dev != 0) break; /* only autoprobe 1st one */ if (this_dev != 0) break; /* only autoprobe 1st one */
printk(KERN_NOTICE "3c503.c: Presently autoprobing (not recommended) for a single card.\n"); printk(KERN_NOTICE "3c503.c: Presently autoprobing (not recommended) for a single card.\n");
} }
if (register_netdev(dev) != 0) { dev = alloc_etherdev(0);
printk(KERN_WARNING "3c503.c: No 3c503 card found (i/o = 0x%x).\n", io[this_dev]); if (!dev)
if (found != 0) { /* Got at least one. */ break;
return 0; dev->priv = NULL;
dev->irq = irq[this_dev];
dev->base_addr = io[this_dev];
dev->mem_end = xcvr[this_dev]; /* low 4bits = xcvr sel. */
if (do_el2_probe(dev) == 0) {
if (register_netdev(dev) == 0) {
dev_el2[found++] = dev;
continue;
} }
return -ENXIO; cleanup_card(dev);
} }
found++; free_netdev(dev);
printk(KERN_WARNING "3c503.c: No 3c503 card found (i/o = 0x%x).\n", io[this_dev]);
break;
} }
return 0; if (found)
return 0;
return -ENXIO;
} }
void void
...@@ -681,13 +728,11 @@ cleanup_module(void) ...@@ -681,13 +728,11 @@ cleanup_module(void)
int this_dev; int this_dev;
for (this_dev = 0; this_dev < MAX_EL2_CARDS; this_dev++) { for (this_dev = 0; this_dev < MAX_EL2_CARDS; this_dev++) {
struct net_device *dev = &dev_el2[this_dev]; struct net_device *dev = dev_el2[this_dev];
if (dev->priv != NULL) { if (dev) {
void *priv = dev->priv;
/* NB: el2_close() handles free_irq */
release_region(dev->base_addr, EL2_IO_EXTENT);
unregister_netdev(dev); unregister_netdev(dev);
kfree(priv); cleanup_card(dev);
free_netdev(dev);
} }
} }
} }
......
...@@ -45,7 +45,7 @@ extern int hp100_probe(struct net_device *dev); ...@@ -45,7 +45,7 @@ extern int hp100_probe(struct net_device *dev);
extern int ultra_probe(struct net_device *dev); extern int ultra_probe(struct net_device *dev);
extern int ultra32_probe(struct net_device *dev); extern int ultra32_probe(struct net_device *dev);
extern int wd_probe(struct net_device *dev); extern int wd_probe(struct net_device *dev);
extern int el2_probe(struct net_device *dev); extern struct net_device *el2_probe(int unit);
extern struct net_device *ne_probe(int unit); extern struct net_device *ne_probe(int unit);
extern struct net_device *hp_probe(int unit); extern struct net_device *hp_probe(int unit);
extern struct net_device *hp_plus_probe(int unit); extern struct net_device *hp_plus_probe(int unit);
...@@ -209,14 +209,14 @@ static struct devprobe isa_probes[] __initdata = { ...@@ -209,14 +209,14 @@ static struct devprobe isa_probes[] __initdata = {
#endif #endif
#ifdef CONFIG_WD80x3 #ifdef CONFIG_WD80x3
{wd_probe, 0}, {wd_probe, 0},
#endif
#ifdef CONFIG_EL2 /* 3c503 */
{el2_probe, 0},
#endif #endif
{NULL, 0}, {NULL, 0},
}; };
static struct devprobe2 isa_probes2[] __initdata = { static struct devprobe2 isa_probes2[] __initdata = {
#ifdef CONFIG_EL2 /* 3c503 */
{el2_probe, 0},
#endif
#ifdef CONFIG_HPLAN #ifdef CONFIG_HPLAN
{hp_probe, 0}, {hp_probe, 0},
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment