aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/pcmcia/nmclan_cs.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/pcmcia/nmclan_cs.c')
-rw-r--r--drivers/net/pcmcia/nmclan_cs.c102
1 files changed, 34 insertions, 68 deletions
diff --git a/drivers/net/pcmcia/nmclan_cs.c b/drivers/net/pcmcia/nmclan_cs.c
index 68f2deeb3ade..9d70b6595220 100644
--- a/drivers/net/pcmcia/nmclan_cs.c
+++ b/drivers/net/pcmcia/nmclan_cs.c
@@ -111,6 +111,8 @@ Log: nmclan_cs.c,v
111 111
112---------------------------------------------------------------------------- */ 112---------------------------------------------------------------------------- */
113 113
114#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
115
114#define DRV_NAME "nmclan_cs" 116#define DRV_NAME "nmclan_cs"
115#define DRV_VERSION "0.16" 117#define DRV_VERSION "0.16"
116 118
@@ -146,7 +148,6 @@ Include Files
146#include <linux/ioport.h> 148#include <linux/ioport.h>
147#include <linux/bitops.h> 149#include <linux/bitops.h>
148 150
149#include <pcmcia/cs.h>
150#include <pcmcia/cisreg.h> 151#include <pcmcia/cisreg.h>
151#include <pcmcia/cistpl.h> 152#include <pcmcia/cistpl.h>
152#include <pcmcia/ds.h> 153#include <pcmcia/ds.h>
@@ -435,13 +436,6 @@ static const struct net_device_ops mace_netdev_ops = {
435 .ndo_validate_addr = eth_validate_addr, 436 .ndo_validate_addr = eth_validate_addr,
436}; 437};
437 438
438/* ----------------------------------------------------------------------------
439nmclan_attach
440 Creates an "instance" of the driver, allocating local data
441 structures for one device. The device is registered with Card
442 Services.
443---------------------------------------------------------------------------- */
444
445static int nmclan_probe(struct pcmcia_device *link) 439static int nmclan_probe(struct pcmcia_device *link)
446{ 440{
447 mace_private *lp; 441 mace_private *lp;
@@ -460,10 +454,9 @@ static int nmclan_probe(struct pcmcia_device *link)
460 spin_lock_init(&lp->bank_lock); 454 spin_lock_init(&lp->bank_lock);
461 link->resource[0]->end = 32; 455 link->resource[0]->end = 32;
462 link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO; 456 link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
463 link->conf.Attributes = CONF_ENABLE_IRQ; 457 link->config_flags |= CONF_ENABLE_IRQ;
464 link->conf.IntType = INT_MEMORY_AND_IO; 458 link->config_index = 1;
465 link->conf.ConfigIndex = 1; 459 link->config_regs = PRESENT_OPTION;
466 link->conf.Present = PRESENT_OPTION;
467 460
468 lp->tx_free_frames=AM2150_MAX_TX_FRAMES; 461 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
469 462
@@ -474,14 +467,6 @@ static int nmclan_probe(struct pcmcia_device *link)
474 return nmclan_config(link); 467 return nmclan_config(link);
475} /* nmclan_attach */ 468} /* nmclan_attach */
476 469
477/* ----------------------------------------------------------------------------
478nmclan_detach
479 This deletes a driver "instance". The device is de-registered
480 with Card Services. If it has been released, all local data
481 structures are freed. Otherwise, the structures will be freed
482 when the device is released.
483---------------------------------------------------------------------------- */
484
485static void nmclan_detach(struct pcmcia_device *link) 470static void nmclan_detach(struct pcmcia_device *link)
486{ 471{
487 struct net_device *dev = link->priv; 472 struct net_device *dev = link->priv;
@@ -519,7 +504,7 @@ static int mace_read(mace_private *lp, unsigned int ioaddr, int reg)
519 spin_unlock_irqrestore(&lp->bank_lock, flags); 504 spin_unlock_irqrestore(&lp->bank_lock, flags);
520 break; 505 break;
521 } 506 }
522 return (data & 0xFF); 507 return data & 0xFF;
523} /* mace_read */ 508} /* mace_read */
524 509
525/* ---------------------------------------------------------------------------- 510/* ----------------------------------------------------------------------------
@@ -563,7 +548,7 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
563 /* Wait for reset bit to be cleared automatically after <= 200ns */; 548 /* Wait for reset bit to be cleared automatically after <= 200ns */;
564 if(++ct > 500) 549 if(++ct > 500)
565 { 550 {
566 printk(KERN_ERR "mace: reset failed, card removed ?\n"); 551 pr_err("reset failed, card removed?\n");
567 return -1; 552 return -1;
568 } 553 }
569 udelay(1); 554 udelay(1);
@@ -610,7 +595,7 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
610 { 595 {
611 if(++ ct > 500) 596 if(++ ct > 500)
612 { 597 {
613 printk(KERN_ERR "mace: ADDRCHG timeout, card removed ?\n"); 598 pr_err("ADDRCHG timeout, card removed?\n");
614 return -1; 599 return -1;
615 } 600 }
616 } 601 }
@@ -625,13 +610,6 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
625 return 0; 610 return 0;
626} /* mace_init */ 611} /* mace_init */
627 612
628/* ----------------------------------------------------------------------------
629nmclan_config
630 This routine is scheduled to run after a CARD_INSERTION event
631 is received, to configure the PCMCIA socket, and to make the
632 ethernet device available to the system.
633---------------------------------------------------------------------------- */
634
635static int nmclan_config(struct pcmcia_device *link) 613static int nmclan_config(struct pcmcia_device *link)
636{ 614{
637 struct net_device *dev = link->priv; 615 struct net_device *dev = link->priv;
@@ -650,7 +628,7 @@ static int nmclan_config(struct pcmcia_device *link)
650 ret = pcmcia_request_exclusive_irq(link, mace_interrupt); 628 ret = pcmcia_request_exclusive_irq(link, mace_interrupt);
651 if (ret) 629 if (ret)
652 goto failed; 630 goto failed;
653 ret = pcmcia_request_configuration(link, &link->conf); 631 ret = pcmcia_enable_device(link);
654 if (ret) 632 if (ret)
655 goto failed; 633 goto failed;
656 634
@@ -678,8 +656,8 @@ static int nmclan_config(struct pcmcia_device *link)
678 dev_dbg(&link->dev, "nmclan_cs configured: mace id=%x %x\n", 656 dev_dbg(&link->dev, "nmclan_cs configured: mace id=%x %x\n",
679 sig[0], sig[1]); 657 sig[0], sig[1]);
680 } else { 658 } else {
681 printk(KERN_NOTICE "nmclan_cs: mace id not found: %x %x should" 659 pr_notice("mace id not found: %x %x should be 0x40 0x?9\n",
682 " be 0x40 0x?9\n", sig[0], sig[1]); 660 sig[0], sig[1]);
683 return -ENODEV; 661 return -ENODEV;
684 } 662 }
685 } 663 }
@@ -691,20 +669,18 @@ static int nmclan_config(struct pcmcia_device *link)
691 if (if_port <= 2) 669 if (if_port <= 2)
692 dev->if_port = if_port; 670 dev->if_port = if_port;
693 else 671 else
694 printk(KERN_NOTICE "nmclan_cs: invalid if_port requested\n"); 672 pr_notice("invalid if_port requested\n");
695 673
696 SET_NETDEV_DEV(dev, &link->dev); 674 SET_NETDEV_DEV(dev, &link->dev);
697 675
698 i = register_netdev(dev); 676 i = register_netdev(dev);
699 if (i != 0) { 677 if (i != 0) {
700 printk(KERN_NOTICE "nmclan_cs: register_netdev() failed\n"); 678 pr_notice("register_netdev() failed\n");
701 goto failed; 679 goto failed;
702 } 680 }
703 681
704 printk(KERN_INFO "%s: nmclan: port %#3lx, irq %d, %s port," 682 netdev_info(dev, "nmclan: port %#3lx, irq %d, %s port, hw_addr %pM\n",
705 " hw_addr %pM\n", 683 dev->base_addr, dev->irq, if_names[dev->if_port], dev->dev_addr);
706 dev->name, dev->base_addr, dev->irq, if_names[dev->if_port],
707 dev->dev_addr);
708 return 0; 684 return 0;
709 685
710failed: 686failed:
@@ -712,12 +688,6 @@ failed:
712 return -ENODEV; 688 return -ENODEV;
713} /* nmclan_config */ 689} /* nmclan_config */
714 690
715/* ----------------------------------------------------------------------------
716nmclan_release
717 After a card is removed, nmclan_release() will unregister the
718 net device, and release the PCMCIA configuration. If the device
719 is still open, this will be postponed until it is closed.
720---------------------------------------------------------------------------- */
721static void nmclan_release(struct pcmcia_device *link) 691static void nmclan_release(struct pcmcia_device *link)
722{ 692{
723 dev_dbg(&link->dev, "nmclan_release\n"); 693 dev_dbg(&link->dev, "nmclan_release\n");
@@ -798,8 +768,7 @@ static int mace_config(struct net_device *dev, struct ifmap *map)
798 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) { 768 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
799 if (map->port <= 2) { 769 if (map->port <= 2) {
800 dev->if_port = map->port; 770 dev->if_port = map->port;
801 printk(KERN_INFO "%s: switched to %s port\n", dev->name, 771 netdev_info(dev, "switched to %s port\n", if_names[dev->if_port]);
802 if_names[dev->if_port]);
803 } else 772 } else
804 return -EINVAL; 773 return -EINVAL;
805 } 774 }
@@ -878,12 +847,12 @@ static void mace_tx_timeout(struct net_device *dev)
878 mace_private *lp = netdev_priv(dev); 847 mace_private *lp = netdev_priv(dev);
879 struct pcmcia_device *link = lp->p_dev; 848 struct pcmcia_device *link = lp->p_dev;
880 849
881 printk(KERN_NOTICE "%s: transmit timed out -- ", dev->name); 850 netdev_notice(dev, "transmit timed out -- ");
882#if RESET_ON_TIMEOUT 851#if RESET_ON_TIMEOUT
883 printk("resetting card\n"); 852 pr_cont("resetting card\n");
884 pcmcia_reset_card(link->socket); 853 pcmcia_reset_card(link->socket);
885#else /* #if RESET_ON_TIMEOUT */ 854#else /* #if RESET_ON_TIMEOUT */
886 printk("NOT resetting card\n"); 855 pr_cont("NOT resetting card\n");
887#endif /* #if RESET_ON_TIMEOUT */ 856#endif /* #if RESET_ON_TIMEOUT */
888 dev->trans_start = jiffies; /* prevent tx timeout */ 857 dev->trans_start = jiffies; /* prevent tx timeout */
889 netif_wake_queue(dev); 858 netif_wake_queue(dev);
@@ -965,22 +934,21 @@ static irqreturn_t mace_interrupt(int irq, void *dev_id)
965 ioaddr = dev->base_addr; 934 ioaddr = dev->base_addr;
966 935
967 if (lp->tx_irq_disabled) { 936 if (lp->tx_irq_disabled) {
968 printk( 937 const char *msg;
969 (lp->tx_irq_disabled? 938 if (lp->tx_irq_disabled)
970 KERN_NOTICE "%s: Interrupt with tx_irq_disabled " 939 msg = "Interrupt with tx_irq_disabled";
971 "[isr=%02X, imr=%02X]\n": 940 else
972 KERN_NOTICE "%s: Re-entering the interrupt handler " 941 msg = "Re-entering the interrupt handler";
973 "[isr=%02X, imr=%02X]\n"), 942 netdev_notice(dev, "%s [isr=%02X, imr=%02X]\n",
974 dev->name, 943 msg,
975 inb(ioaddr + AM2150_MACE_BASE + MACE_IR), 944 inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
976 inb(ioaddr + AM2150_MACE_BASE + MACE_IMR) 945 inb(ioaddr + AM2150_MACE_BASE + MACE_IMR));
977 );
978 /* WARNING: MACE_IR has been read! */ 946 /* WARNING: MACE_IR has been read! */
979 return IRQ_NONE; 947 return IRQ_NONE;
980 } 948 }
981 949
982 if (!netif_device_present(dev)) { 950 if (!netif_device_present(dev)) {
983 pr_debug("%s: interrupt from dead card\n", dev->name); 951 netdev_dbg(dev, "interrupt from dead card\n");
984 return IRQ_NONE; 952 return IRQ_NONE;
985 } 953 }
986 954
@@ -1323,7 +1291,7 @@ updateCRC
1323 1291
1324static void updateCRC(int *CRC, int bit) 1292static void updateCRC(int *CRC, int bit)
1325{ 1293{
1326 int poly[]={ 1294 static const int poly[]={
1327 1,1,1,0, 1,1,0,1, 1295 1,1,1,0, 1,1,0,1,
1328 1,0,1,1, 1,0,0,0, 1296 1,0,1,1, 1,0,0,0,
1329 1,0,0,0, 0,0,1,1, 1297 1,0,0,0, 0,0,1,1,
@@ -1378,8 +1346,8 @@ static void BuildLAF(int *ladrf, int *adr)
1378 printk(KERN_DEBUG " adr =%pM\n", adr); 1346 printk(KERN_DEBUG " adr =%pM\n", adr);
1379 printk(KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63] =", hashcode); 1347 printk(KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63] =", hashcode);
1380 for (i = 0; i < 8; i++) 1348 for (i = 0; i < 8; i++)
1381 printk(KERN_CONT " %02X", ladrf[i]); 1349 pr_cont(" %02X", ladrf[i]);
1382 printk(KERN_CONT "\n"); 1350 pr_cont("\n");
1383#endif 1351#endif
1384} /* BuildLAF */ 1352} /* BuildLAF */
1385 1353
@@ -1526,7 +1494,7 @@ static void set_multicast_list(struct net_device *dev)
1526 1494
1527} /* set_multicast_list */ 1495} /* set_multicast_list */
1528 1496
1529static struct pcmcia_device_id nmclan_ids[] = { 1497static const struct pcmcia_device_id nmclan_ids[] = {
1530 PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941), 1498 PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941),
1531 PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf), 1499 PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf),
1532 PCMCIA_DEVICE_NULL, 1500 PCMCIA_DEVICE_NULL,
@@ -1535,9 +1503,7 @@ MODULE_DEVICE_TABLE(pcmcia, nmclan_ids);
1535 1503
1536static struct pcmcia_driver nmclan_cs_driver = { 1504static struct pcmcia_driver nmclan_cs_driver = {
1537 .owner = THIS_MODULE, 1505 .owner = THIS_MODULE,
1538 .drv = { 1506 .name = "nmclan_cs",
1539 .name = "nmclan_cs",
1540 },
1541 .probe = nmclan_probe, 1507 .probe = nmclan_probe,
1542 .remove = nmclan_detach, 1508 .remove = nmclan_detach,
1543 .id_table = nmclan_ids, 1509 .id_table = nmclan_ids,