Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux ARCnet driver - COM20020 PCMCIA support |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Written 1994-1999 by Avery Pennarun, |
| 5 | * based on an ISA version by David Woodhouse. |
| 6 | * Derived from ibmtr_cs.c by Steve Kipisz (pcmcia-cs 3.1.4) |
| 7 | * which was derived from pcnet_cs.c by David Hinds. |
| 8 | * Some additional portions derived from skeleton.c by Donald Becker. |
| 9 | * |
| 10 | * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com) |
| 11 | * for sponsoring the further development of this driver. |
| 12 | * |
| 13 | * ********************** |
| 14 | * |
| 15 | * The original copyright of skeleton.c was as follows: |
| 16 | * |
| 17 | * skeleton.c Written 1993 by Donald Becker. |
| 18 | * Copyright 1993 United States Government as represented by the |
| 19 | * Director, National Security Agency. This software may only be used |
| 20 | * and distributed according to the terms of the GNU General Public License as |
| 21 | * modified by SRC, incorporated herein by reference. |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 22 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * ********************** |
| 24 | * Changes: |
| 25 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 08/08/2000 |
| 26 | * - reorganize kmallocs in com20020_attach, checking all for failure |
| 27 | * and releasing the previous allocations if one fails |
| 28 | * ********************** |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 29 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * For more details, see drivers/net/arcnet.c |
| 31 | * |
| 32 | * ********************** |
| 33 | */ |
Joe Perches | 05a24b2 | 2015-05-05 10:05:56 -0700 | [diff] [blame] | 34 | |
| 35 | #define pr_fmt(fmt) "arcnet:" KBUILD_MODNAME ": " fmt |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/ptrace.h> |
| 39 | #include <linux/slab.h> |
| 40 | #include <linux/string.h> |
| 41 | #include <linux/timer.h> |
| 42 | #include <linux/delay.h> |
| 43 | #include <linux/module.h> |
| 44 | #include <linux/netdevice.h> |
Joe Perches | 26c6d28 | 2015-05-05 10:06:03 -0700 | [diff] [blame] | 45 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <pcmcia/cistpl.h> |
| 47 | #include <pcmcia/ds.h> |
| 48 | |
Joe Perches | 26c6d28 | 2015-05-05 10:06:03 -0700 | [diff] [blame] | 49 | #include "arcdevice.h" |
| 50 | #include "com20020.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | static void regdump(struct net_device *dev) |
| 53 | { |
Joe Perches | 636b811 | 2010-08-12 12:22:51 +0000 | [diff] [blame] | 54 | #ifdef DEBUG |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 55 | int ioaddr = dev->base_addr; |
| 56 | int count; |
| 57 | |
| 58 | netdev_dbg(dev, "register dump:\n"); |
Joe Perches | 0fec651 | 2015-05-05 10:06:06 -0700 | [diff] [blame] | 59 | for (count = 0; count < 16; count++) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 60 | if (!(count % 16)) |
Joe Perches | 0fec651 | 2015-05-05 10:06:06 -0700 | [diff] [blame] | 61 | pr_cont("%04X:", ioaddr + count); |
| 62 | pr_cont(" %02X", arcnet_inb(ioaddr, count)); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 63 | } |
| 64 | pr_cont("\n"); |
| 65 | |
| 66 | netdev_dbg(dev, "buffer0 dump:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* set up the address register */ |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 68 | count = 0; |
Joe Perches | 0fec651 | 2015-05-05 10:06:06 -0700 | [diff] [blame] | 69 | arcnet_outb((count >> 8) | RDDATAflag | AUTOINCflag, |
| 70 | ioaddr, com20020_REG_W_ADDR_HI); |
| 71 | arcnet_outb(count & 0xff, ioaddr, COM20020_REG_W_ADDR_LO); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 72 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 73 | for (count = 0; count < 256 + 32; count++) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 74 | if (!(count % 16)) |
| 75 | pr_cont("%04X:", count); |
| 76 | |
| 77 | /* copy the data */ |
Joe Perches | 0fec651 | 2015-05-05 10:06:06 -0700 | [diff] [blame] | 78 | pr_cont(" %02X", arcnet_inb(ioaddr, COM20020_REG_RW_MEMDATA)); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 79 | } |
| 80 | pr_cont("\n"); |
Joe Perches | 636b811 | 2010-08-12 12:22:51 +0000 | [diff] [blame] | 81 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /*====================================================================*/ |
| 85 | |
| 86 | /* Parameters that can be set with 'insmod' */ |
| 87 | |
| 88 | static int node; |
| 89 | static int timeout = 3; |
| 90 | static int backplane; |
| 91 | static int clockp; |
| 92 | static int clockm; |
| 93 | |
| 94 | module_param(node, int, 0); |
| 95 | module_param(timeout, int, 0); |
| 96 | module_param(backplane, int, 0); |
| 97 | module_param(clockp, int, 0); |
| 98 | module_param(clockm, int, 0); |
| 99 | |
| 100 | MODULE_LICENSE("GPL"); |
| 101 | |
| 102 | /*====================================================================*/ |
| 103 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 104 | static int com20020_config(struct pcmcia_device *link); |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 105 | static void com20020_release(struct pcmcia_device *link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Dominik Brodowski | cc3b486 | 2005-11-14 21:23:14 +0100 | [diff] [blame] | 107 | static void com20020_detach(struct pcmcia_device *p_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /*====================================================================*/ |
| 110 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 111 | static int com20020_probe(struct pcmcia_device *p_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 113 | struct com20020_dev *info; |
| 114 | struct net_device *dev; |
| 115 | struct arcnet_local *lp; |
Dominik Brodowski | f8cfa61 | 2005-11-14 21:25:51 +0100 | [diff] [blame] | 116 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 117 | dev_dbg(&p_dev->dev, "com20020_attach()\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 119 | /* Create new network device */ |
| 120 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 121 | if (!info) |
| 122 | goto fail_alloc_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 124 | dev = alloc_arcdev(""); |
| 125 | if (!dev) |
| 126 | goto fail_alloc_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 128 | lp = netdev_priv(dev); |
| 129 | lp->timeout = timeout; |
| 130 | lp->backplane = backplane; |
| 131 | lp->clockp = clockp; |
| 132 | lp->clockm = clockm & 3; |
| 133 | lp->hw.owner = THIS_MODULE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 135 | /* fill in our module parameters as defaults */ |
| 136 | dev->dev_addr[0] = node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 138 | p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; |
| 139 | p_dev->resource[0]->end = 16; |
| 140 | p_dev->config_flags |= CONF_ENABLE_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 142 | info->dev = dev; |
| 143 | p_dev->priv = info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 145 | return com20020_config(p_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | fail_alloc_dev: |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 148 | kfree(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | fail_alloc_info: |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 150 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } /* com20020_attach */ |
| 152 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 153 | static void com20020_detach(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 155 | struct com20020_dev *info = link->priv; |
| 156 | struct net_device *dev = info->dev; |
Dominik Brodowski | b463581 | 2005-11-14 21:25:35 +0100 | [diff] [blame] | 157 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 158 | dev_dbg(&link->dev, "detach...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 160 | dev_dbg(&link->dev, "com20020_detach\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 162 | dev_dbg(&link->dev, "unregister...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 164 | unregister_netdev(dev); |
Dominik Brodowski | b463581 | 2005-11-14 21:25:35 +0100 | [diff] [blame] | 165 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 166 | /* this is necessary because we register our IRQ separately |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 167 | * from card services. |
| 168 | */ |
| 169 | if (dev->irq) |
| 170 | free_irq(dev->irq, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 172 | com20020_release(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 174 | /* Unlink device structure, free bits */ |
| 175 | dev_dbg(&link->dev, "unlinking...\n"); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 176 | if (link->priv) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 177 | dev = info->dev; |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 178 | if (dev) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 179 | dev_dbg(&link->dev, "kfree...\n"); |
| 180 | free_netdev(dev); |
| 181 | } |
| 182 | dev_dbg(&link->dev, "kfree2...\n"); |
| 183 | kfree(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | } /* com20020_detach */ |
| 187 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 188 | static int com20020_config(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 190 | struct arcnet_local *lp; |
| 191 | struct com20020_dev *info; |
| 192 | struct net_device *dev; |
| 193 | int i, ret; |
| 194 | int ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 196 | info = link->priv; |
| 197 | dev = info->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 199 | dev_dbg(&link->dev, "config...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 201 | dev_dbg(&link->dev, "com20020_config\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 203 | dev_dbg(&link->dev, "baseport1 is %Xh\n", |
| 204 | (unsigned int)link->resource[0]->start); |
Dominik Brodowski | 90abdc3 | 2010-07-24 17:23:51 +0200 | [diff] [blame] | 205 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 206 | i = -ENODEV; |
| 207 | link->io_lines = 16; |
Dominik Brodowski | 90abdc3 | 2010-07-24 17:23:51 +0200 | [diff] [blame] | 208 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 209 | if (!link->resource[0]->start) { |
| 210 | for (ioaddr = 0x100; ioaddr < 0x400; ioaddr += 0x10) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 211 | link->resource[0]->start = ioaddr; |
| 212 | i = pcmcia_request_io(link); |
| 213 | if (i == 0) |
| 214 | break; |
| 215 | } |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 216 | } else { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 217 | i = pcmcia_request_io(link); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 218 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 220 | if (i != 0) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 221 | dev_dbg(&link->dev, "requestIO failed totally!\n"); |
| 222 | goto failed; |
| 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 225 | ioaddr = dev->base_addr = link->resource[0]->start; |
| 226 | dev_dbg(&link->dev, "got ioaddr %Xh\n", ioaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 228 | dev_dbg(&link->dev, "request IRQ %d\n", |
| 229 | link->irq); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 230 | if (!link->irq) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 231 | dev_dbg(&link->dev, "requestIRQ failed totally!\n"); |
| 232 | goto failed; |
| 233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 235 | dev->irq = link->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 237 | ret = pcmcia_enable_device(link); |
| 238 | if (ret) |
| 239 | goto failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 241 | if (com20020_check(dev)) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 242 | regdump(dev); |
| 243 | goto failed; |
| 244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 246 | lp = netdev_priv(dev); |
| 247 | lp->card_name = "PCMCIA COM20020"; |
| 248 | lp->card_flags = ARC_CAN_10MBIT; /* pretend all of them can 10Mbit */ |
| 249 | |
| 250 | SET_NETDEV_DEV(dev, &link->dev); |
| 251 | |
| 252 | i = com20020_found(dev, 0); /* calls register_netdev */ |
| 253 | |
| 254 | if (i != 0) { |
| 255 | dev_notice(&link->dev, |
| 256 | "com20020_found() failed\n"); |
| 257 | goto failed; |
| 258 | } |
| 259 | |
| 260 | netdev_dbg(dev, "port %#3lx, irq %d\n", |
| 261 | dev->base_addr, dev->irq); |
| 262 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | failed: |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 265 | dev_dbg(&link->dev, "com20020_config failed...\n"); |
| 266 | com20020_release(link); |
| 267 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } /* com20020_config */ |
| 269 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 270 | static void com20020_release(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
Dominik Brodowski | dd0fab5 | 2009-10-24 15:51:05 +0200 | [diff] [blame] | 272 | dev_dbg(&link->dev, "com20020_release\n"); |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 273 | pcmcia_disable_device(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 276 | static int com20020_suspend(struct pcmcia_device *link) |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 277 | { |
Himangi Saraogi | 2dfd253 | 2014-08-09 21:37:18 +0530 | [diff] [blame] | 278 | struct com20020_dev *info = link->priv; |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 279 | struct net_device *dev = info->dev; |
| 280 | |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 281 | if (link->open) |
Dominik Brodowski | 8661bb5 | 2006-03-02 00:02:33 +0100 | [diff] [blame] | 282 | netif_device_detach(dev); |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 283 | |
| 284 | return 0; |
| 285 | } |
| 286 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 287 | static int com20020_resume(struct pcmcia_device *link) |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 288 | { |
Himangi Saraogi | 2dfd253 | 2014-08-09 21:37:18 +0530 | [diff] [blame] | 289 | struct com20020_dev *info = link->priv; |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 290 | struct net_device *dev = info->dev; |
| 291 | |
Dominik Brodowski | e2d4096 | 2006-03-02 00:09:29 +0100 | [diff] [blame] | 292 | if (link->open) { |
Dominik Brodowski | 8661bb5 | 2006-03-02 00:02:33 +0100 | [diff] [blame] | 293 | int ioaddr = dev->base_addr; |
Wang Chen | 4cf1653 | 2008-11-12 23:38:14 -0800 | [diff] [blame] | 294 | struct arcnet_local *lp = netdev_priv(dev); |
Joe Perches | 01a1d5a | 2015-05-05 10:05:48 -0700 | [diff] [blame] | 295 | |
Joe Perches | 0fec651 | 2015-05-05 10:06:06 -0700 | [diff] [blame] | 296 | arcnet_outb(lp->config | 0x80, ioaddr, COM20020_REG_W_CONFIG); |
| 297 | udelay(5); |
| 298 | arcnet_outb(lp->config, ioaddr, COM20020_REG_W_CONFIG); |
Dominik Brodowski | 8661bb5 | 2006-03-02 00:02:33 +0100 | [diff] [blame] | 299 | } |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 300 | |
| 301 | return 0; |
| 302 | } |
| 303 | |
Joe Perches | 25f8f54 | 2011-05-03 19:29:01 -0700 | [diff] [blame] | 304 | static const struct pcmcia_device_id com20020_ids[] = { |
Marc Sowen | 6bb1c39 | 2006-06-25 01:56:24 -0700 | [diff] [blame] | 305 | PCMCIA_DEVICE_PROD_ID12("Contemporary Control Systems, Inc.", |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 306 | "PCM20 Arcnet Adapter", 0x59991666, 0x95dfffaf), |
Marc Sowen | 6bb1c39 | 2006-06-25 01:56:24 -0700 | [diff] [blame] | 307 | PCMCIA_DEVICE_PROD_ID12("SoHard AG", |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 308 | "SH ARC PCMCIA", 0xf8991729, 0x69dff0c7), |
Dominik Brodowski | 7fb22bb | 2005-06-27 16:28:38 -0700 | [diff] [blame] | 309 | PCMCIA_DEVICE_NULL |
| 310 | }; |
| 311 | MODULE_DEVICE_TABLE(pcmcia, com20020_ids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | static struct pcmcia_driver com20020_cs_driver = { |
| 314 | .owner = THIS_MODULE, |
Dominik Brodowski | 2e9b981 | 2010-08-08 11:36:26 +0200 | [diff] [blame] | 315 | .name = "com20020_cs", |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 316 | .probe = com20020_probe, |
Dominik Brodowski | cc3b486 | 2005-11-14 21:23:14 +0100 | [diff] [blame] | 317 | .remove = com20020_detach, |
Dominik Brodowski | 7fb22bb | 2005-06-27 16:28:38 -0700 | [diff] [blame] | 318 | .id_table = com20020_ids, |
Dominik Brodowski | 98e4c28 | 2005-11-14 21:21:18 +0100 | [diff] [blame] | 319 | .suspend = com20020_suspend, |
| 320 | .resume = com20020_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | }; |
H Hartley Sweeten | fdd3f29 | 2013-03-06 11:27:43 -0700 | [diff] [blame] | 322 | module_pcmcia_driver(com20020_cs_driver); |