Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 2 | * xircom_cb: A driver for the (tulip-like) Xircom Cardbus ethernet cards |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * This software is (C) by the respective authors, and licensed under the GPL |
| 5 | * License. |
| 6 | * |
| 7 | * Written by Arjan van de Ven for Red Hat, Inc. |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 8 | * Based on work by Jeff Garzik, Doug Ledford and Donald Becker |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * This software may be used and distributed according to the terms |
| 11 | * of the GNU General Public License, incorporated herein by reference. |
| 12 | * |
| 13 | * |
| 14 | * $Id: xircom_cb.c,v 1.33 2001/03/19 14:02:07 arjanv Exp $ |
| 15 | */ |
| 16 | |
Joe Perches | 44298ec | 2010-01-28 20:59:29 +0000 | [diff] [blame] | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/string.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/ioport.h> |
| 24 | #include <linux/slab.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/pci.h> |
| 27 | #include <linux/netdevice.h> |
| 28 | #include <linux/etherdevice.h> |
| 29 | #include <linux/skbuff.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/bitops.h> |
| 33 | |
| 34 | #include <asm/uaccess.h> |
| 35 | #include <asm/io.h> |
Al Viro | 8272997 | 2005-12-06 05:53:04 -0500 | [diff] [blame] | 36 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 37 | #include <asm/irq.h> |
| 38 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | MODULE_DESCRIPTION("Xircom Cardbus ethernet driver"); |
| 41 | MODULE_AUTHOR("Arjan van de Ven <arjanv@redhat.com>"); |
| 42 | MODULE_LICENSE("GPL"); |
| 43 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 44 | #define xw32(reg, val) iowrite32(val, ioaddr + (reg)) |
| 45 | #define xr32(reg) ioread32(ioaddr + (reg)) |
| 46 | #define xr8(reg) ioread8(ioaddr + (reg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* IO registers on the card, offsets */ |
| 49 | #define CSR0 0x00 |
| 50 | #define CSR1 0x08 |
| 51 | #define CSR2 0x10 |
| 52 | #define CSR3 0x18 |
| 53 | #define CSR4 0x20 |
| 54 | #define CSR5 0x28 |
| 55 | #define CSR6 0x30 |
| 56 | #define CSR7 0x38 |
| 57 | #define CSR8 0x40 |
| 58 | #define CSR9 0x48 |
| 59 | #define CSR10 0x50 |
| 60 | #define CSR11 0x58 |
| 61 | #define CSR12 0x60 |
| 62 | #define CSR13 0x68 |
| 63 | #define CSR14 0x70 |
| 64 | #define CSR15 0x78 |
| 65 | #define CSR16 0x80 |
| 66 | |
| 67 | /* PCI registers */ |
| 68 | #define PCI_POWERMGMT 0x40 |
| 69 | |
| 70 | /* Offsets of the buffers within the descriptor pages, in bytes */ |
| 71 | |
| 72 | #define NUMDESCRIPTORS 4 |
| 73 | |
| 74 | static int bufferoffsets[NUMDESCRIPTORS] = {128,2048,4096,6144}; |
| 75 | |
| 76 | |
| 77 | struct xircom_private { |
| 78 | /* Send and receive buffers, kernel-addressable and dma addressable forms */ |
| 79 | |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 80 | __le32 *rx_buffer; |
| 81 | __le32 *tx_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | dma_addr_t rx_dma_handle; |
| 84 | dma_addr_t tx_dma_handle; |
| 85 | |
| 86 | struct sk_buff *tx_skb[4]; |
| 87 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 88 | void __iomem *ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | int open; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | /* transmit_used is the rotating counter that indicates which transmit |
| 92 | descriptor has to be used next */ |
| 93 | int transmit_used; |
| 94 | |
| 95 | /* Spinlock to serialize register operations. |
| 96 | It must be helt while manipulating the following registers: |
| 97 | CSR0, CSR6, CSR7, CSR9, CSR10, CSR15 |
| 98 | */ |
| 99 | spinlock_t lock; |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | struct pci_dev *pdev; |
| 102 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | }; |
| 104 | |
| 105 | |
| 106 | /* Function prototypes */ |
| 107 | static int xircom_probe(struct pci_dev *pdev, const struct pci_device_id *id); |
| 108 | static void xircom_remove(struct pci_dev *pdev); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 109 | static irqreturn_t xircom_interrupt(int irq, void *dev_instance); |
Stephen Hemminger | ad09646 | 2009-08-31 19:50:53 +0000 | [diff] [blame] | 110 | static netdev_tx_t xircom_start_xmit(struct sk_buff *skb, |
| 111 | struct net_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | static int xircom_open(struct net_device *dev); |
| 113 | static int xircom_close(struct net_device *dev); |
| 114 | static void xircom_up(struct xircom_private *card); |
Keith Owens | 3be034b | 2005-09-13 15:05:13 +1000 | [diff] [blame] | 115 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | static void xircom_poll_controller(struct net_device *dev); |
| 117 | #endif |
| 118 | |
| 119 | static void investigate_read_descriptor(struct net_device *dev,struct xircom_private *card, int descnr, unsigned int bufferoffset); |
| 120 | static void investigate_write_descriptor(struct net_device *dev, struct xircom_private *card, int descnr, unsigned int bufferoffset); |
| 121 | static void read_mac_address(struct xircom_private *card); |
| 122 | static void transceiver_voodoo(struct xircom_private *card); |
| 123 | static void initialize_card(struct xircom_private *card); |
| 124 | static void trigger_transmit(struct xircom_private *card); |
| 125 | static void trigger_receive(struct xircom_private *card); |
| 126 | static void setup_descriptors(struct xircom_private *card); |
| 127 | static void remove_descriptors(struct xircom_private *card); |
| 128 | static int link_status_changed(struct xircom_private *card); |
| 129 | static void activate_receiver(struct xircom_private *card); |
| 130 | static void deactivate_receiver(struct xircom_private *card); |
| 131 | static void activate_transmitter(struct xircom_private *card); |
| 132 | static void deactivate_transmitter(struct xircom_private *card); |
| 133 | static void enable_transmit_interrupt(struct xircom_private *card); |
| 134 | static void enable_receive_interrupt(struct xircom_private *card); |
| 135 | static void enable_link_interrupt(struct xircom_private *card); |
| 136 | static void disable_all_interrupts(struct xircom_private *card); |
| 137 | static int link_status(struct xircom_private *card); |
| 138 | |
| 139 | |
| 140 | |
Alexey Dobriyan | a3aa188 | 2010-01-07 11:58:11 +0000 | [diff] [blame] | 141 | static DEFINE_PCI_DEVICE_TABLE(xircom_pci_table) = { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 142 | { PCI_VDEVICE(XIRCOM, 0x0003), }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | {0,}, |
| 144 | }; |
| 145 | MODULE_DEVICE_TABLE(pci, xircom_pci_table); |
| 146 | |
| 147 | static struct pci_driver xircom_ops = { |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 148 | .name = "xircom_cb", |
| 149 | .id_table = xircom_pci_table, |
| 150 | .probe = xircom_probe, |
Bill Pemberton | 779c1a8 | 2012-12-03 09:23:41 -0500 | [diff] [blame] | 151 | .remove = xircom_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 155 | #if defined DEBUG && DEBUG > 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | static void print_binary(unsigned int number) |
| 157 | { |
| 158 | int i,i2; |
| 159 | char buffer[64]; |
| 160 | memset(buffer,0,64); |
| 161 | i2=0; |
| 162 | for (i=31;i>=0;i--) { |
| 163 | if (number & (1<<i)) |
| 164 | buffer[i2++]='1'; |
| 165 | else |
| 166 | buffer[i2++]='0'; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 167 | if ((i&3)==0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | buffer[i2++]=' '; |
| 169 | } |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 170 | pr_debug("%s\n",buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } |
| 172 | #endif |
| 173 | |
Stephen Hemminger | 1034c9f | 2009-01-07 18:00:55 -0800 | [diff] [blame] | 174 | static const struct net_device_ops netdev_ops = { |
| 175 | .ndo_open = xircom_open, |
| 176 | .ndo_stop = xircom_close, |
| 177 | .ndo_start_xmit = xircom_start_xmit, |
| 178 | .ndo_change_mtu = eth_change_mtu, |
| 179 | .ndo_set_mac_address = eth_mac_addr, |
| 180 | .ndo_validate_addr = eth_validate_addr, |
| 181 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 182 | .ndo_poll_controller = xircom_poll_controller, |
| 183 | #endif |
| 184 | }; |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* xircom_probe is the code that gets called on device insertion. |
| 187 | it sets up the hardware and registers the device to the networklayer. |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | TODO: Send 1 or 2 "dummy" packets here as the card seems to discard the |
| 190 | first two packets that get send, and pump hates that. |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | */ |
Bill Pemberton | 779c1a8 | 2012-12-03 09:23:41 -0500 | [diff] [blame] | 193 | static int xircom_probe(struct pci_dev *pdev, const struct pci_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 195 | struct device *d = &pdev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | struct net_device *dev = NULL; |
| 197 | struct xircom_private *private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | unsigned long flags; |
| 199 | unsigned short tmp16; |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 200 | int rc; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | /* First do the PCI initialisation */ |
| 203 | |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 204 | rc = pci_enable_device(pdev); |
| 205 | if (rc < 0) |
| 206 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | /* disable all powermanagement */ |
| 209 | pci_write_config_dword(pdev, PCI_POWERMGMT, 0x0000); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | pci_set_master(pdev); /* Why isn't this done by pci_enable_device ?*/ |
| 212 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 213 | /* clear PCI status, if any */ |
| 214 | pci_read_config_word (pdev,PCI_STATUS, &tmp16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | pci_write_config_word (pdev, PCI_STATUS,tmp16); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 216 | |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 217 | rc = pci_request_regions(pdev, "xircom_cb"); |
| 218 | if (rc < 0) { |
Joe Perches | 44298ec | 2010-01-28 20:59:29 +0000 | [diff] [blame] | 219 | pr_err("%s: failed to allocate io-region\n", __func__); |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 220 | goto err_disable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 223 | rc = -ENOMEM; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 224 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | Before changing the hardware, allocate the memory. |
| 226 | This way, we can fail gracefully if not enough memory |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 227 | is available. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | */ |
| 229 | dev = alloc_etherdev(sizeof(struct xircom_private)); |
Joe Perches | 41de8d4 | 2012-01-29 13:47:52 +0000 | [diff] [blame] | 230 | if (!dev) |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 231 | goto err_release; |
Joe Perches | 41de8d4 | 2012-01-29 13:47:52 +0000 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | private = netdev_priv(dev); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* Allocate the send/receive buffers */ |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 236 | private->rx_buffer = dma_alloc_coherent(d, 8192, |
| 237 | &private->rx_dma_handle, |
| 238 | GFP_KERNEL); |
Joe Perches | d0320f7 | 2013-03-14 13:07:21 +0000 | [diff] [blame^] | 239 | if (private->rx_buffer == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | goto rx_buf_fail; |
Joe Perches | d0320f7 | 2013-03-14 13:07:21 +0000 | [diff] [blame^] | 241 | |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 242 | private->tx_buffer = dma_alloc_coherent(d, 8192, |
| 243 | &private->tx_dma_handle, |
| 244 | GFP_KERNEL); |
Joe Perches | d0320f7 | 2013-03-14 13:07:21 +0000 | [diff] [blame^] | 245 | if (private->tx_buffer == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | goto tx_buf_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | SET_NETDEV_DEV(dev, &pdev->dev); |
| 249 | |
| 250 | |
| 251 | private->dev = dev; |
| 252 | private->pdev = pdev; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 253 | |
| 254 | /* IO range. */ |
| 255 | private->ioaddr = pci_iomap(pdev, 0, 0); |
| 256 | if (!private->ioaddr) |
| 257 | goto reg_fail; |
| 258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | spin_lock_init(&private->lock); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | initialize_card(private); |
| 262 | read_mac_address(private); |
| 263 | setup_descriptors(private); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 264 | |
Stephen Hemminger | 1034c9f | 2009-01-07 18:00:55 -0800 | [diff] [blame] | 265 | dev->netdev_ops = &netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | pci_set_drvdata(pdev, dev); |
| 267 | |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 268 | rc = register_netdev(dev); |
| 269 | if (rc < 0) { |
Joe Perches | 44298ec | 2010-01-28 20:59:29 +0000 | [diff] [blame] | 270 | pr_err("%s: netdevice registration failed\n", __func__); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 271 | goto err_unmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 273 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 274 | netdev_info(dev, "Xircom cardbus revision %i at irq %i\n", |
| 275 | pdev->revision, pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* start the transmitter to get a heartbeat */ |
| 277 | /* TODO: send 2 dummy packets here */ |
| 278 | transceiver_voodoo(private); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | spin_lock_irqsave(&private->lock,flags); |
| 281 | activate_transmitter(private); |
| 282 | activate_receiver(private); |
| 283 | spin_unlock_irqrestore(&private->lock,flags); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | trigger_receive(private); |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 286 | out: |
| 287 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 289 | err_unmap: |
| 290 | pci_iounmap(pdev, private->ioaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | reg_fail: |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 292 | pci_set_drvdata(pdev, NULL); |
| 293 | dma_free_coherent(d, 8192, private->tx_buffer, private->tx_dma_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | tx_buf_fail: |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 295 | dma_free_coherent(d, 8192, private->rx_buffer, private->rx_dma_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | rx_buf_fail: |
| 297 | free_netdev(dev); |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 298 | err_release: |
| 299 | pci_release_regions(pdev); |
| 300 | err_disable: |
| 301 | pci_disable_device(pdev); |
| 302 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | |
| 306 | /* |
| 307 | xircom_remove is called on module-unload or on device-eject. |
| 308 | it unregisters the irq, io-region and network device. |
| 309 | Interrupts and such are already stopped in the "ifconfig ethX down" |
| 310 | code. |
| 311 | */ |
Bill Pemberton | 779c1a8 | 2012-12-03 09:23:41 -0500 | [diff] [blame] | 312 | static void xircom_remove(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | { |
| 314 | struct net_device *dev = pci_get_drvdata(pdev); |
| 315 | struct xircom_private *card = netdev_priv(dev); |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 316 | struct device *d = &pdev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | unregister_netdev(dev); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 319 | pci_iounmap(pdev, card->ioaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | pci_set_drvdata(pdev, NULL); |
Francois Romieu | d59a188 | 2012-03-11 23:34:54 +0100 | [diff] [blame] | 321 | dma_free_coherent(d, 8192, card->tx_buffer, card->tx_dma_handle); |
| 322 | dma_free_coherent(d, 8192, card->rx_buffer, card->rx_dma_handle); |
| 323 | free_netdev(dev); |
| 324 | pci_release_regions(pdev); |
| 325 | pci_disable_device(pdev); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 326 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 328 | static irqreturn_t xircom_interrupt(int irq, void *dev_instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { |
| 330 | struct net_device *dev = (struct net_device *) dev_instance; |
| 331 | struct xircom_private *card = netdev_priv(dev); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 332 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | unsigned int status; |
| 334 | int i; |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | spin_lock(&card->lock); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 337 | status = xr32(CSR5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 339 | #if defined DEBUG && DEBUG > 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | print_binary(status); |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 341 | pr_debug("tx status 0x%08x 0x%08x\n", |
| 342 | card->tx_buffer[0], card->tx_buffer[4]); |
| 343 | pr_debug("rx status 0x%08x 0x%08x\n", |
| 344 | card->rx_buffer[0], card->rx_buffer[4]); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 345 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | /* Handle shared irq and hotplug */ |
| 347 | if (status == 0 || status == 0xffffffff) { |
| 348 | spin_unlock(&card->lock); |
| 349 | return IRQ_NONE; |
| 350 | } |
| 351 | |
| 352 | if (link_status_changed(card)) { |
| 353 | int newlink; |
Joe Perches | 726b65a | 2011-05-09 09:45:22 +0000 | [diff] [blame] | 354 | netdev_dbg(dev, "Link status has changed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | newlink = link_status(card); |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 356 | netdev_info(dev, "Link is %d mbit\n", newlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | if (newlink) |
| 358 | netif_carrier_on(dev); |
| 359 | else |
| 360 | netif_carrier_off(dev); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 364 | /* Clear all remaining interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | status |= 0xffffffff; /* FIXME: make this clear only the |
| 366 | real existing bits */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 367 | xw32(CSR5, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 369 | |
| 370 | for (i=0;i<NUMDESCRIPTORS;i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | investigate_write_descriptor(dev,card,i,bufferoffsets[i]); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 372 | for (i=0;i<NUMDESCRIPTORS;i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | investigate_read_descriptor(dev,card,i,bufferoffsets[i]); |
| 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | spin_unlock(&card->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | return IRQ_HANDLED; |
| 377 | } |
| 378 | |
Stephen Hemminger | ad09646 | 2009-08-31 19:50:53 +0000 | [diff] [blame] | 379 | static netdev_tx_t xircom_start_xmit(struct sk_buff *skb, |
| 380 | struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
| 382 | struct xircom_private *card; |
| 383 | unsigned long flags; |
| 384 | int nextdescriptor; |
| 385 | int desc; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | card = netdev_priv(dev); |
| 388 | spin_lock_irqsave(&card->lock,flags); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | /* First see if we can free some descriptors */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 391 | for (desc=0;desc<NUMDESCRIPTORS;desc++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | investigate_write_descriptor(dev,card,desc,bufferoffsets[desc]); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 393 | |
| 394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | nextdescriptor = (card->transmit_used +1) % (NUMDESCRIPTORS); |
| 396 | desc = card->transmit_used; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | /* only send the packet if the descriptor is free */ |
| 399 | if (card->tx_buffer[4*desc]==0) { |
| 400 | /* Copy the packet data; zero the memory first as the card |
| 401 | sometimes sends more than you ask it to. */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | memset(&card->tx_buffer[bufferoffsets[desc]/4],0,1536); |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 404 | skb_copy_from_linear_data(skb, |
| 405 | &(card->tx_buffer[bufferoffsets[desc] / 4]), |
| 406 | skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | /* FIXME: The specification tells us that the length we send HAS to be a multiple of |
| 408 | 4 bytes. */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 409 | |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 410 | card->tx_buffer[4*desc+1] = cpu_to_le32(skb->len); |
| 411 | if (desc == NUMDESCRIPTORS - 1) /* bit 25: last descriptor of the ring */ |
| 412 | card->tx_buffer[4*desc+1] |= cpu_to_le32(1<<25); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 414 | card->tx_buffer[4*desc+1] |= cpu_to_le32(0xF0000000); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 415 | /* 0xF0... means want interrupts*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | card->tx_skb[desc] = skb; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | wmb(); |
| 419 | /* This gives the descriptor to the card */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 420 | card->tx_buffer[4*desc] = cpu_to_le32(0x80000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | trigger_transmit(card); |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 422 | if (card->tx_buffer[nextdescriptor*4] & cpu_to_le32(0x8000000)) { |
| 423 | /* next descriptor is occupied... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | netif_stop_queue(dev); |
| 425 | } |
| 426 | card->transmit_used = nextdescriptor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | spin_unlock_irqrestore(&card->lock,flags); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 428 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | /* Uh oh... no free descriptor... drop the packet */ |
| 432 | netif_stop_queue(dev); |
| 433 | spin_unlock_irqrestore(&card->lock,flags); |
| 434 | trigger_transmit(card); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 435 | |
Erik Mouw | 06f7525 | 2008-02-04 18:56:54 +0100 | [diff] [blame] | 436 | return NETDEV_TX_BUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | |
| 440 | |
| 441 | |
| 442 | static int xircom_open(struct net_device *dev) |
| 443 | { |
| 444 | struct xircom_private *xp = netdev_priv(dev); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 445 | const int irq = xp->pdev->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | int retval; |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 447 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 448 | netdev_info(dev, "xircom cardbus adaptor found, using irq %i\n", irq); |
| 449 | retval = request_irq(irq, xircom_interrupt, IRQF_SHARED, dev->name, dev); |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 450 | if (retval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | return retval; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | xircom_up(xp); |
| 454 | xp->open = 1; |
Joe Perches | 54668b8 | 2011-05-09 09:45:20 +0000 | [diff] [blame] | 455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | static int xircom_close(struct net_device *dev) |
| 460 | { |
| 461 | struct xircom_private *card; |
| 462 | unsigned long flags; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | card = netdev_priv(dev); |
| 465 | netif_stop_queue(dev); /* we don't want new packets */ |
| 466 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | spin_lock_irqsave(&card->lock,flags); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | disable_all_interrupts(card); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 471 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | /* We can enable this again once we send dummy packets on ifconfig ethX up */ |
| 473 | deactivate_receiver(card); |
| 474 | deactivate_transmitter(card); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 475 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | remove_descriptors(card); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | spin_unlock_irqrestore(&card->lock,flags); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | card->open = 0; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 481 | free_irq(card->pdev->irq, dev); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | return 0; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 489 | static void xircom_poll_controller(struct net_device *dev) |
| 490 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 491 | struct xircom_private *xp = netdev_priv(dev); |
| 492 | const int irq = xp->pdev->irq; |
| 493 | |
| 494 | disable_irq(irq); |
| 495 | xircom_interrupt(irq, dev); |
| 496 | enable_irq(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | #endif |
| 499 | |
| 500 | |
| 501 | static void initialize_card(struct xircom_private *card) |
| 502 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 503 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | unsigned long flags; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 505 | u32 val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
| 507 | spin_lock_irqsave(&card->lock, flags); |
| 508 | |
| 509 | /* First: reset the card */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 510 | val = xr32(CSR0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | val |= 0x01; /* Software reset */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 512 | xw32(CSR0, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
| 514 | udelay(100); /* give the card some time to reset */ |
| 515 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 516 | val = xr32(CSR0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | val &= ~0x01; /* disable Software reset */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 518 | xw32(CSR0, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
| 520 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 521 | val = 0; /* Value 0x00 is a safe and conservative value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | for the PCI configuration settings */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 523 | xw32(CSR0, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | |
| 526 | disable_all_interrupts(card); |
| 527 | deactivate_receiver(card); |
| 528 | deactivate_transmitter(card); |
| 529 | |
| 530 | spin_unlock_irqrestore(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | /* |
| 534 | trigger_transmit causes the card to check for frames to be transmitted. |
| 535 | This is accomplished by writing to the CSR1 port. The documentation |
| 536 | claims that the act of writing is sufficient and that the value is |
| 537 | ignored; I chose zero. |
| 538 | */ |
| 539 | static void trigger_transmit(struct xircom_private *card) |
| 540 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 541 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 543 | xw32(CSR1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | /* |
| 547 | trigger_receive causes the card to check for empty frames in the |
| 548 | descriptor list in which packets can be received. |
| 549 | This is accomplished by writing to the CSR2 port. The documentation |
| 550 | claims that the act of writing is sufficient and that the value is |
| 551 | ignored; I chose zero. |
| 552 | */ |
| 553 | static void trigger_receive(struct xircom_private *card) |
| 554 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 555 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 557 | xw32(CSR2, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } |
| 559 | |
| 560 | /* |
| 561 | setup_descriptors initializes the send and receive buffers to be valid |
| 562 | descriptors and programs the addresses into the card. |
| 563 | */ |
| 564 | static void setup_descriptors(struct xircom_private *card) |
| 565 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 566 | void __iomem *ioaddr = card->ioaddr; |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 567 | u32 address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
Eric Sesterhenn / snakebyte | a707cd6 | 2006-01-26 22:02:51 +0100 | [diff] [blame] | 570 | BUG_ON(card->rx_buffer == NULL); |
| 571 | BUG_ON(card->tx_buffer == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | /* Receive descriptors */ |
| 574 | memset(card->rx_buffer, 0, 128); /* clear the descriptors */ |
| 575 | for (i=0;i<NUMDESCRIPTORS;i++ ) { |
| 576 | |
| 577 | /* Rx Descr0: It's empty, let the card own it, no errors -> 0x80000000 */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 578 | card->rx_buffer[i*4 + 0] = cpu_to_le32(0x80000000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | /* Rx Descr1: buffer 1 is 1536 bytes, buffer 2 is 0 bytes */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 580 | card->rx_buffer[i*4 + 1] = cpu_to_le32(1536); |
| 581 | if (i == NUMDESCRIPTORS - 1) /* bit 25 is "last descriptor" */ |
| 582 | card->rx_buffer[i*4 + 1] |= cpu_to_le32(1 << 25); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
| 584 | /* Rx Descr2: address of the buffer |
| 585 | we store the buffer at the 2nd half of the page */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 586 | |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 587 | address = card->rx_dma_handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | card->rx_buffer[i*4 + 2] = cpu_to_le32(address + bufferoffsets[i]); |
| 589 | /* Rx Desc3: address of 2nd buffer -> 0 */ |
| 590 | card->rx_buffer[i*4 + 3] = 0; |
| 591 | } |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | wmb(); |
| 594 | /* Write the receive descriptor ring address to the card */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 595 | address = card->rx_dma_handle; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 596 | xw32(CSR3, address); /* Receive descr list address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | |
| 599 | /* transmit descriptors */ |
| 600 | memset(card->tx_buffer, 0, 128); /* clear the descriptors */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | for (i=0;i<NUMDESCRIPTORS;i++ ) { |
| 603 | /* Tx Descr0: Empty, we own it, no errors -> 0x00000000 */ |
| 604 | card->tx_buffer[i*4 + 0] = 0x00000000; |
| 605 | /* Tx Descr1: buffer 1 is 1536 bytes, buffer 2 is 0 bytes */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 606 | card->tx_buffer[i*4 + 1] = cpu_to_le32(1536); |
| 607 | if (i == NUMDESCRIPTORS - 1) /* bit 25 is "last descriptor" */ |
| 608 | card->tx_buffer[i*4 + 1] |= cpu_to_le32(1 << 25); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | /* Tx Descr2: address of the buffer |
| 611 | we store the buffer at the 2nd half of the page */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 612 | address = card->tx_dma_handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | card->tx_buffer[i*4 + 2] = cpu_to_le32(address + bufferoffsets[i]); |
| 614 | /* Tx Desc3: address of 2nd buffer -> 0 */ |
| 615 | card->tx_buffer[i*4 + 3] = 0; |
| 616 | } |
| 617 | |
| 618 | wmb(); |
| 619 | /* wite the transmit descriptor ring to the card */ |
Al Viro | 6f35d5d | 2007-12-23 20:01:04 +0000 | [diff] [blame] | 620 | address = card->tx_dma_handle; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 621 | xw32(CSR4, address); /* xmit descr list address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /* |
| 625 | remove_descriptors informs the card the descriptors are no longer |
| 626 | valid by setting the address in the card to 0x00. |
| 627 | */ |
| 628 | static void remove_descriptors(struct xircom_private *card) |
| 629 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 630 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
| 633 | val = 0; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 634 | xw32(CSR3, val); /* Receive descriptor address */ |
| 635 | xw32(CSR4, val); /* Send descriptor address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | /* |
| 639 | link_status_changed returns 1 if the card has indicated that |
| 640 | the link status has changed. The new link status has to be read from CSR12. |
| 641 | |
| 642 | This function also clears the status-bit. |
| 643 | */ |
| 644 | static int link_status_changed(struct xircom_private *card) |
| 645 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 646 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 649 | val = xr32(CSR5); /* Status register */ |
| 650 | if (!(val & (1 << 27))) /* no change */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
| 653 | /* clear the event by writing a 1 to the bit in the |
| 654 | status register. */ |
| 655 | val = (1 << 27); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 656 | xw32(CSR5, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | return 1; |
| 659 | } |
| 660 | |
| 661 | |
| 662 | /* |
| 663 | transmit_active returns 1 if the transmitter on the card is |
| 664 | in a non-stopped state. |
| 665 | */ |
| 666 | static int transmit_active(struct xircom_private *card) |
| 667 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 668 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 670 | if (!(xr32(CSR5) & (7 << 20))) /* transmitter disabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | return 1; |
| 674 | } |
| 675 | |
| 676 | /* |
| 677 | receive_active returns 1 if the receiver on the card is |
| 678 | in a non-stopped state. |
| 679 | */ |
| 680 | static int receive_active(struct xircom_private *card) |
| 681 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 682 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 684 | if (!(xr32(CSR5) & (7 << 17))) /* receiver disabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | return 1; |
| 688 | } |
| 689 | |
| 690 | /* |
| 691 | activate_receiver enables the receiver on the card. |
| 692 | Before being allowed to active the receiver, the receiver |
| 693 | must be completely de-activated. To achieve this, |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 694 | this code actually disables the receiver first; then it waits for the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | receiver to become inactive, then it activates the receiver and then |
| 696 | it waits for the receiver to be active. |
| 697 | |
| 698 | must be called with the lock held and interrupts disabled. |
| 699 | */ |
| 700 | static void activate_receiver(struct xircom_private *card) |
| 701 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 702 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | unsigned int val; |
| 704 | int counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 706 | val = xr32(CSR6); /* Operation mode */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | /* If the "active" bit is set and the receiver is already |
| 709 | active, no need to do the expensive thing */ |
| 710 | if ((val&2) && (receive_active(card))) |
| 711 | return; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 712 | |
| 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | val = val & ~2; /* disable the receiver */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 715 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | counter = 10; |
| 718 | while (counter > 0) { |
| 719 | if (!receive_active(card)) |
| 720 | break; |
| 721 | /* wait a while */ |
| 722 | udelay(50); |
| 723 | counter--; |
| 724 | if (counter <= 0) |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 725 | netdev_err(card->dev, "Receiver failed to deactivate\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* enable the receiver */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 729 | val = xr32(CSR6); /* Operation mode */ |
| 730 | val = val | 2; /* enable the receiver */ |
| 731 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | |
| 733 | /* now wait for the card to activate again */ |
| 734 | counter = 10; |
| 735 | while (counter > 0) { |
| 736 | if (receive_active(card)) |
| 737 | break; |
| 738 | /* wait a while */ |
| 739 | udelay(50); |
| 740 | counter--; |
| 741 | if (counter <= 0) |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 742 | netdev_err(card->dev, |
| 743 | "Receiver failed to re-activate\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | /* |
| 748 | deactivate_receiver disables the receiver on the card. |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 749 | To achieve this this code disables the receiver first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | then it waits for the receiver to become inactive. |
| 751 | |
| 752 | must be called with the lock held and interrupts disabled. |
| 753 | */ |
| 754 | static void deactivate_receiver(struct xircom_private *card) |
| 755 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 756 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | unsigned int val; |
| 758 | int counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 760 | val = xr32(CSR6); /* Operation mode */ |
| 761 | val = val & ~2; /* disable the receiver */ |
| 762 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | |
| 764 | counter = 10; |
| 765 | while (counter > 0) { |
| 766 | if (!receive_active(card)) |
| 767 | break; |
| 768 | /* wait a while */ |
| 769 | udelay(50); |
| 770 | counter--; |
| 771 | if (counter <= 0) |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 772 | netdev_err(card->dev, "Receiver failed to deactivate\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | |
| 777 | /* |
| 778 | activate_transmitter enables the transmitter on the card. |
| 779 | Before being allowed to active the transmitter, the transmitter |
| 780 | must be completely de-activated. To achieve this, |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 781 | this code actually disables the transmitter first; then it waits for the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | transmitter to become inactive, then it activates the transmitter and then |
| 783 | it waits for the transmitter to be active again. |
| 784 | |
| 785 | must be called with the lock held and interrupts disabled. |
| 786 | */ |
| 787 | static void activate_transmitter(struct xircom_private *card) |
| 788 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 789 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | unsigned int val; |
| 791 | int counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 793 | val = xr32(CSR6); /* Operation mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
| 795 | /* If the "active" bit is set and the receiver is already |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 796 | active, no need to do the expensive thing */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | if ((val&(1<<13)) && (transmit_active(card))) |
| 798 | return; |
| 799 | |
| 800 | val = val & ~(1 << 13); /* disable the transmitter */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 801 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
| 803 | counter = 10; |
| 804 | while (counter > 0) { |
| 805 | if (!transmit_active(card)) |
| 806 | break; |
| 807 | /* wait a while */ |
| 808 | udelay(50); |
| 809 | counter--; |
| 810 | if (counter <= 0) |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 811 | netdev_err(card->dev, |
| 812 | "Transmitter failed to deactivate\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | /* enable the transmitter */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 816 | val = xr32(CSR6); /* Operation mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | val = val | (1 << 13); /* enable the transmitter */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 818 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | /* now wait for the card to activate again */ |
| 821 | counter = 10; |
| 822 | while (counter > 0) { |
| 823 | if (transmit_active(card)) |
| 824 | break; |
| 825 | /* wait a while */ |
| 826 | udelay(50); |
| 827 | counter--; |
| 828 | if (counter <= 0) |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 829 | netdev_err(card->dev, |
| 830 | "Transmitter failed to re-activate\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | /* |
| 835 | deactivate_transmitter disables the transmitter on the card. |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 836 | To achieve this this code disables the transmitter first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | then it waits for the transmitter to become inactive. |
| 838 | |
| 839 | must be called with the lock held and interrupts disabled. |
| 840 | */ |
| 841 | static void deactivate_transmitter(struct xircom_private *card) |
| 842 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 843 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | unsigned int val; |
| 845 | int counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 847 | val = xr32(CSR6); /* Operation mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | val = val & ~2; /* disable the transmitter */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 849 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
| 851 | counter = 20; |
| 852 | while (counter > 0) { |
| 853 | if (!transmit_active(card)) |
| 854 | break; |
| 855 | /* wait a while */ |
| 856 | udelay(50); |
| 857 | counter--; |
| 858 | if (counter <= 0) |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 859 | netdev_err(card->dev, |
| 860 | "Transmitter failed to deactivate\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | |
| 865 | /* |
| 866 | enable_transmit_interrupt enables the transmit interrupt |
| 867 | |
| 868 | must be called with the lock held and interrupts disabled. |
| 869 | */ |
| 870 | static void enable_transmit_interrupt(struct xircom_private *card) |
| 871 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 872 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 875 | val = xr32(CSR7); /* Interrupt enable register */ |
| 876 | val |= 1; /* enable the transmit interrupt */ |
| 877 | xw32(CSR7, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | } |
| 879 | |
| 880 | |
| 881 | /* |
| 882 | enable_receive_interrupt enables the receive interrupt |
| 883 | |
| 884 | must be called with the lock held and interrupts disabled. |
| 885 | */ |
| 886 | static void enable_receive_interrupt(struct xircom_private *card) |
| 887 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 888 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 891 | val = xr32(CSR7); /* Interrupt enable register */ |
| 892 | val = val | (1 << 6); /* enable the receive interrupt */ |
| 893 | xw32(CSR7, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | } |
| 895 | |
| 896 | /* |
| 897 | enable_link_interrupt enables the link status change interrupt |
| 898 | |
| 899 | must be called with the lock held and interrupts disabled. |
| 900 | */ |
| 901 | static void enable_link_interrupt(struct xircom_private *card) |
| 902 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 903 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 906 | val = xr32(CSR7); /* Interrupt enable register */ |
| 907 | val = val | (1 << 27); /* enable the link status chage interrupt */ |
| 908 | xw32(CSR7, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | } |
| 910 | |
| 911 | |
| 912 | |
| 913 | /* |
| 914 | disable_all_interrupts disables all interrupts |
| 915 | |
| 916 | must be called with the lock held and interrupts disabled. |
| 917 | */ |
| 918 | static void disable_all_interrupts(struct xircom_private *card) |
| 919 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 920 | void __iomem *ioaddr = card->ioaddr; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 921 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 922 | xw32(CSR7, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | /* |
| 926 | enable_common_interrupts enables several weird interrupts |
| 927 | |
| 928 | must be called with the lock held and interrupts disabled. |
| 929 | */ |
| 930 | static void enable_common_interrupts(struct xircom_private *card) |
| 931 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 932 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 935 | val = xr32(CSR7); /* Interrupt enable register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | val |= (1<<16); /* Normal Interrupt Summary */ |
| 937 | val |= (1<<15); /* Abnormal Interrupt Summary */ |
| 938 | val |= (1<<13); /* Fatal bus error */ |
| 939 | val |= (1<<8); /* Receive Process Stopped */ |
| 940 | val |= (1<<7); /* Receive Buffer Unavailable */ |
| 941 | val |= (1<<5); /* Transmit Underflow */ |
| 942 | val |= (1<<2); /* Transmit Buffer Unavailable */ |
| 943 | val |= (1<<1); /* Transmit Process Stopped */ |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 944 | xw32(CSR7, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | } |
| 946 | |
| 947 | /* |
| 948 | enable_promisc starts promisc mode |
| 949 | |
| 950 | must be called with the lock held and interrupts disabled. |
| 951 | */ |
| 952 | static int enable_promisc(struct xircom_private *card) |
| 953 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 954 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 957 | val = xr32(CSR6); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 958 | val = val | (1 << 6); |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 959 | xw32(CSR6, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | return 1; |
| 962 | } |
| 963 | |
| 964 | |
| 965 | |
| 966 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 967 | /* |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 968 | link_status() checks the links status and will return 0 for no link, 10 for 10mbit link and 100 for.. guess what. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
| 970 | Must be called in locked state with interrupts disabled |
| 971 | */ |
| 972 | static int link_status(struct xircom_private *card) |
| 973 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 974 | void __iomem *ioaddr = card->ioaddr; |
| 975 | u8 val; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 976 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 977 | val = xr8(CSR12); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 978 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 979 | /* bit 2 is 0 for 10mbit link, 1 for not an 10mbit link */ |
| 980 | if (!(val & (1 << 2))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | return 10; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 982 | /* bit 1 is 0 for 100mbit link, 1 for not an 100mbit link */ |
| 983 | if (!(val & (1 << 1))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | return 100; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 985 | |
| 986 | /* If we get here -> no link at all */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | return 0; |
| 989 | } |
| 990 | |
| 991 | |
| 992 | |
| 993 | |
| 994 | |
| 995 | /* |
| 996 | read_mac_address() reads the MAC address from the NIC and stores it in the "dev" structure. |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | This function will take the spinlock itself and can, as a result, not be called with the lock helt. |
| 999 | */ |
| 1000 | static void read_mac_address(struct xircom_private *card) |
| 1001 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1002 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | unsigned long flags; |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1004 | u8 link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | int i; |
| 1006 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | spin_lock_irqsave(&card->lock, flags); |
| 1008 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1009 | xw32(CSR9, 1 << 12); /* enable boot rom access */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | for (i = 0x100; i < 0x1f7; i += link + 2) { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1011 | u8 tuple, data_id, data_count; |
| 1012 | |
| 1013 | xw32(CSR10, i); |
| 1014 | tuple = xr32(CSR9); |
| 1015 | xw32(CSR10, i + 1); |
| 1016 | link = xr32(CSR9); |
| 1017 | xw32(CSR10, i + 2); |
| 1018 | data_id = xr32(CSR9); |
| 1019 | xw32(CSR10, i + 3); |
| 1020 | data_count = xr32(CSR9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | if ((tuple == 0x22) && (data_id == 0x04) && (data_count == 0x06)) { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1022 | int j; |
| 1023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | for (j = 0; j < 6; j++) { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1025 | xw32(CSR10, i + j + 4); |
| 1026 | card->dev->dev_addr[j] = xr32(CSR9) & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | } |
| 1028 | break; |
| 1029 | } else if (link == 0) { |
| 1030 | break; |
| 1031 | } |
| 1032 | } |
| 1033 | spin_unlock_irqrestore(&card->lock, flags); |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1034 | pr_debug(" %pM\n", card->dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | |
| 1038 | /* |
| 1039 | transceiver_voodoo() enables the external UTP plug thingy. |
| 1040 | it's called voodoo as I stole this code and cannot cross-reference |
| 1041 | it with the specification. |
| 1042 | */ |
| 1043 | static void transceiver_voodoo(struct xircom_private *card) |
| 1044 | { |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1045 | void __iomem *ioaddr = card->ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | unsigned long flags; |
| 1047 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | /* disable all powermanagement */ |
| 1049 | pci_write_config_dword(card->pdev, PCI_POWERMGMT, 0x0000); |
| 1050 | |
| 1051 | setup_descriptors(card); |
| 1052 | |
| 1053 | spin_lock_irqsave(&card->lock, flags); |
| 1054 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1055 | xw32(CSR15, 0x0008); |
| 1056 | udelay(25); |
| 1057 | xw32(CSR15, 0xa8050000); |
| 1058 | udelay(25); |
| 1059 | xw32(CSR15, 0xa00f0000); |
| 1060 | udelay(25); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1061 | |
Francois Romieu | ebaf7f8 | 2012-03-13 09:27:47 +0100 | [diff] [blame] | 1062 | spin_unlock_irqrestore(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
| 1064 | netif_start_queue(card->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | |
| 1068 | static void xircom_up(struct xircom_private *card) |
| 1069 | { |
| 1070 | unsigned long flags; |
| 1071 | int i; |
| 1072 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | /* disable all powermanagement */ |
| 1074 | pci_write_config_dword(card->pdev, PCI_POWERMGMT, 0x0000); |
| 1075 | |
| 1076 | setup_descriptors(card); |
| 1077 | |
| 1078 | spin_lock_irqsave(&card->lock, flags); |
| 1079 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | enable_link_interrupt(card); |
| 1082 | enable_transmit_interrupt(card); |
| 1083 | enable_receive_interrupt(card); |
| 1084 | enable_common_interrupts(card); |
| 1085 | enable_promisc(card); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | /* The card can have received packets already, read them away now */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1088 | for (i=0;i<NUMDESCRIPTORS;i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | investigate_read_descriptor(card->dev,card,i,bufferoffsets[i]); |
| 1090 | |
| 1091 | |
| 1092 | spin_unlock_irqrestore(&card->lock, flags); |
| 1093 | trigger_receive(card); |
| 1094 | trigger_transmit(card); |
| 1095 | netif_start_queue(card->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | } |
| 1097 | |
| 1098 | /* Bufferoffset is in BYTES */ |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1099 | static void |
| 1100 | investigate_read_descriptor(struct net_device *dev, struct xircom_private *card, |
| 1101 | int descnr, unsigned int bufferoffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | { |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1103 | int status; |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1104 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1105 | status = le32_to_cpu(card->rx_buffer[4*descnr]); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1106 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1107 | if (status > 0) { /* packet received */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1108 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1109 | /* TODO: discard error packets */ |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1110 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1111 | short pkt_len = ((status >> 16) & 0x7ff) - 4; |
| 1112 | /* minus 4, we don't want the CRC */ |
| 1113 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1115 | if (pkt_len > 1518) { |
| 1116 | netdev_err(dev, "Packet length %i is bogus\n", pkt_len); |
| 1117 | pkt_len = 1518; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | } |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1119 | |
Pradeep A Dalvi | 21a4e46 | 2012-02-05 02:50:10 +0000 | [diff] [blame] | 1120 | skb = netdev_alloc_skb(dev, pkt_len + 2); |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1121 | if (skb == NULL) { |
| 1122 | dev->stats.rx_dropped++; |
| 1123 | goto out; |
| 1124 | } |
| 1125 | skb_reserve(skb, 2); |
| 1126 | skb_copy_to_linear_data(skb, |
| 1127 | &card->rx_buffer[bufferoffset / 4], |
| 1128 | pkt_len); |
| 1129 | skb_put(skb, pkt_len); |
| 1130 | skb->protocol = eth_type_trans(skb, dev); |
| 1131 | netif_rx(skb); |
| 1132 | dev->stats.rx_packets++; |
| 1133 | dev->stats.rx_bytes += pkt_len; |
| 1134 | |
| 1135 | out: |
| 1136 | /* give the buffer back to the card */ |
| 1137 | card->rx_buffer[4*descnr] = cpu_to_le32(0x80000000); |
| 1138 | trigger_receive(card); |
| 1139 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | |
| 1143 | /* Bufferoffset is in BYTES */ |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1144 | static void |
| 1145 | investigate_write_descriptor(struct net_device *dev, |
| 1146 | struct xircom_private *card, |
| 1147 | int descnr, unsigned int bufferoffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | { |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1149 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1151 | status = le32_to_cpu(card->tx_buffer[4*descnr]); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1152 | #if 0 |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1153 | if (status & 0x8000) { /* Major error */ |
| 1154 | pr_err("Major transmit error status %x\n", status); |
| 1155 | card->tx_buffer[4*descnr] = 0; |
| 1156 | netif_wake_queue (dev); |
| 1157 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | #endif |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1159 | if (status > 0) { /* bit 31 is 0 when done */ |
| 1160 | if (card->tx_skb[descnr]!=NULL) { |
| 1161 | dev->stats.tx_bytes += card->tx_skb[descnr]->len; |
| 1162 | dev_kfree_skb_irq(card->tx_skb[descnr]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } |
Joe Perches | 163ef0b | 2011-05-09 09:45:21 +0000 | [diff] [blame] | 1164 | card->tx_skb[descnr] = NULL; |
| 1165 | /* Bit 8 in the status field is 1 if there was a collision */ |
| 1166 | if (status & (1 << 8)) |
| 1167 | dev->stats.collisions++; |
| 1168 | card->tx_buffer[4*descnr] = 0; /* descriptor is free again */ |
| 1169 | netif_wake_queue (dev); |
| 1170 | dev->stats.tx_packets++; |
| 1171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | static int __init xircom_init(void) |
| 1175 | { |
Alexey Dobriyan | ec42cdb | 2006-08-14 23:00:28 -0700 | [diff] [blame] | 1176 | return pci_register_driver(&xircom_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | static void __exit xircom_exit(void) |
| 1180 | { |
| 1181 | pci_unregister_driver(&xircom_ops); |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | |
Jeff Garzik | f3b197a | 2006-05-26 21:39:03 -0400 | [diff] [blame] | 1184 | module_init(xircom_init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | module_exit(xircom_exit) |
| 1186 | |