blob: ddd64bb87b5899709a81433c764adda6da5e5507 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux ARCnet driver - COM20020 chipset support
Joe Perchescb334642015-05-05 10:05:47 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written 1997 by David Woodhouse.
5 * Written 1994-1999 by Avery Pennarun.
6 * Written 1999 by Martin Mares <mj@ucw.cz>.
7 * Derived from skeleton.c by Donald Becker.
8 *
9 * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
10 * for sponsoring the further development of this driver.
11 *
12 * **********************
13 *
14 * The original copyright of skeleton.c was as follows:
15 *
16 * skeleton.c Written 1993 by Donald Becker.
17 * Copyright 1993 United States Government as represented by the
18 * Director, National Security Agency. This software may only be used
19 * and distributed according to the terms of the GNU General Public License as
20 * modified by SRC, incorporated herein by reference.
21 *
22 * **********************
23 *
24 * For more details, see drivers/net/arcnet.c
25 *
26 * **********************
27 */
Joe Perches05a24b22015-05-05 10:05:56 -070028
29#define pr_fmt(fmt) "arcnet:" KBUILD_MODNAME ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
32#include <linux/kernel.h>
33#include <linux/types.h>
34#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/errno.h>
36#include <linux/delay.h>
37#include <linux/netdevice.h>
38#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000039#include <linux/interrupt.h>
Joe Perches5e7ef912015-05-05 10:05:51 -070040#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Joe Perches26c6d282015-05-05 10:06:03 -070042#include "arcdevice.h"
43#include "com20020.h"
44
Joe Perches4e299b92015-05-05 10:06:04 -070045static const char * const clockrates[] = {
46 "XXXXXXX", "XXXXXXXX", "XXXXXX", "2.5 Mb/s",
47 "1.25Mb/s", "625 Kb/s", "312.5 Kb/s", "156.25 Kb/s",
48 "Reserved", "Reserved", "Reserved"
Joe Perches7f5e7602015-05-05 10:05:49 -070049};
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51static void com20020_command(struct net_device *dev, int command);
52static int com20020_status(struct net_device *dev);
53static void com20020_setmask(struct net_device *dev, int mask);
54static int com20020_reset(struct net_device *dev, int really_reset);
55static void com20020_copy_to_card(struct net_device *dev, int bufnum,
56 int offset, void *buf, int count);
57static void com20020_copy_from_card(struct net_device *dev, int bufnum,
58 int offset, void *buf, int count);
59static void com20020_set_mc_list(struct net_device *dev);
60static void com20020_close(struct net_device *);
61
62static void com20020_copy_from_card(struct net_device *dev, int bufnum,
63 int offset, void *buf, int count)
64{
65 int ioaddr = dev->base_addr, ofs = 512 * bufnum + offset;
66
67 /* set up the address register */
68 outb((ofs >> 8) | RDDATAflag | AUTOINCflag, _ADDR_HI);
69 outb(ofs & 0xff, _ADDR_LO);
70
71 /* copy the data */
Joe Perchesa34c0932015-05-05 10:05:55 -070072 TIME(dev, "insb", count, insb(_MEMDATA, buf, count));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static void com20020_copy_to_card(struct net_device *dev, int bufnum,
76 int offset, void *buf, int count)
77{
78 int ioaddr = dev->base_addr, ofs = 512 * bufnum + offset;
79
80 /* set up the address register */
81 outb((ofs >> 8) | AUTOINCflag, _ADDR_HI);
82 outb(ofs & 0xff, _ADDR_LO);
83
84 /* copy the data */
Joe Perchesa34c0932015-05-05 10:05:55 -070085 TIME(dev, "outsb", count, outsb(_MEMDATA, buf, count));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/* Reset the card and check some basic stuff during the detection stage. */
89int com20020_check(struct net_device *dev)
90{
91 int ioaddr = dev->base_addr, status;
Wang Chen454d7c92008-11-12 23:37:49 -080092 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 ARCRESET0;
95 mdelay(RESETtime);
96
97 lp->setup = lp->clockm ? 0 : (lp->clockp << 1);
98 lp->setup2 = (lp->clockm << 4) | 8;
99
100 /* CHECK: should we do this for SOHARD cards ? */
101 /* Enable P1Mode for backplane mode */
102 lp->setup = lp->setup | P1MODE;
103
104 SET_SUBADR(SUB_SETUP1);
105 outb(lp->setup, _XREG);
106
Joe Perches7f5e7602015-05-05 10:05:49 -0700107 if (lp->clockm != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 SET_SUBADR(SUB_SETUP2);
109 outb(lp->setup2, _XREG);
Joe Perchescb334642015-05-05 10:05:47 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* must now write the magic "restart operation" command */
112 mdelay(1);
113 outb(0x18, _COMMAND);
114 }
115
116 lp->config = 0x21 | (lp->timeout << 3) | (lp->backplane << 2);
117 /* set node ID to 0x42 (but transmitter is disabled, so it's okay) */
118 SETCONF;
Joe Perchescb334642015-05-05 10:05:47 -0700119 outb(0x42, ioaddr + BUS_ALIGN * 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 status = ASTATUS();
122
123 if ((status & 0x99) != (NORXflag | TXFREEflag | RESETflag)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700124 arc_printk(D_NORMAL, dev, "status invalid (%Xh).\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return -ENODEV;
126 }
Joe Perchesa34c0932015-05-05 10:05:55 -0700127 arc_printk(D_INIT_REASONS, dev, "status after reset: %X\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* Enable TX */
130 outb(0x39, _CONFIG);
Joe Perchescb334642015-05-05 10:05:47 -0700131 outb(inb(ioaddr + BUS_ALIGN * 8), ioaddr + BUS_ALIGN * 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
134
135 status = ASTATUS();
Joe Perchesa34c0932015-05-05 10:05:55 -0700136 arc_printk(D_INIT_REASONS, dev, "status after reset acknowledged: %X\n",
137 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* Read first location of memory */
140 outb(0 | RDDATAflag | AUTOINCflag, _ADDR_HI);
141 outb(0, _ADDR_LO);
142
Joe Perches97464ed2015-05-05 10:05:59 -0700143 status = inb(_MEMDATA);
144 if (status != TESTvalue) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700145 arc_printk(D_NORMAL, dev, "Signature byte not found (%02Xh != D1h).\n",
146 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return -ENODEV;
148 }
149 return 0;
150}
151
Michael Grzeschika0d2e512014-09-29 11:55:35 +0200152static int com20020_set_hwaddr(struct net_device *dev, void *addr)
153{
154 int ioaddr = dev->base_addr;
155 struct arcnet_local *lp = netdev_priv(dev);
156 struct sockaddr *hwaddr = addr;
157
158 memcpy(dev->dev_addr, hwaddr->sa_data, 1);
159 SET_SUBADR(SUB_NODE);
160 outb(dev->dev_addr[0], _XREG);
161
162 return 0;
163}
164
Stephen Hemmingera1799af2009-01-09 13:01:10 +0000165const struct net_device_ops com20020_netdev_ops = {
166 .ndo_open = arcnet_open,
167 .ndo_stop = arcnet_close,
168 .ndo_start_xmit = arcnet_send_packet,
169 .ndo_tx_timeout = arcnet_timeout,
Michael Grzeschika0d2e512014-09-29 11:55:35 +0200170 .ndo_set_mac_address = com20020_set_hwaddr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000171 .ndo_set_rx_mode = com20020_set_mc_list,
Stephen Hemmingera1799af2009-01-09 13:01:10 +0000172};
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* Set up the struct net_device associated with this card. Called after
175 * probing succeeds.
176 */
177int com20020_found(struct net_device *dev, int shared)
178{
179 struct arcnet_local *lp;
180 int ioaddr = dev->base_addr;
181
182 /* Initialize the rest of the device structure. */
183
Wang Chen454d7c92008-11-12 23:37:49 -0800184 lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 lp->hw.owner = THIS_MODULE;
187 lp->hw.command = com20020_command;
188 lp->hw.status = com20020_status;
189 lp->hw.intmask = com20020_setmask;
190 lp->hw.reset = com20020_reset;
191 lp->hw.copy_to_card = com20020_copy_to_card;
192 lp->hw.copy_from_card = com20020_copy_from_card;
193 lp->hw.close = com20020_close;
194
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700195 /* FIXME: do this some other way! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (!dev->dev_addr[0])
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700197 dev->dev_addr[0] = inb(ioaddr + BUS_ALIGN * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 SET_SUBADR(SUB_SETUP1);
200 outb(lp->setup, _XREG);
201
Joe Perches7f5e7602015-05-05 10:05:49 -0700202 if (lp->card_flags & ARC_CAN_10MBIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 SET_SUBADR(SUB_SETUP2);
204 outb(lp->setup2, _XREG);
Joe Perchescb334642015-05-05 10:05:47 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /* must now write the magic "restart operation" command */
207 mdelay(1);
208 outb(0x18, _COMMAND);
209 }
210
211 lp->config = 0x20 | (lp->timeout << 3) | (lp->backplane << 2) | 1;
212 /* Default 0x38 + register: Node ID */
213 SETCONF;
214 outb(dev->dev_addr[0], _XREG);
215
216 /* reserve the irq */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800217 if (request_irq(dev->irq, arcnet_interrupt, shared,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 "arcnet (COM20020)", dev)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700219 arc_printk(D_NORMAL, dev, "Can't get IRQ %d!\n", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -ENODEV;
221 }
222
223 dev->base_addr = ioaddr;
224
Joe Perchesa34c0932015-05-05 10:05:55 -0700225 arc_printk(D_NORMAL, dev, "%s: station %02Xh found at %03lXh, IRQ %d.\n",
226 lp->card_name, dev->dev_addr[0], dev->base_addr, dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 if (lp->backplane)
Joe Perchesa34c0932015-05-05 10:05:55 -0700229 arc_printk(D_NORMAL, dev, "Using backplane mode.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 if (lp->timeout != 3)
Joe Perchesa34c0932015-05-05 10:05:55 -0700232 arc_printk(D_NORMAL, dev, "Using extended timeout value of %d\n",
233 lp->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Joe Perchesa34c0932015-05-05 10:05:55 -0700235 arc_printk(D_NORMAL, dev, "Using CKP %d - data rate %s\n",
236 lp->setup >> 1,
Joe Perches4e299b92015-05-05 10:06:04 -0700237 clockrates[3 -
238 ((lp->setup2 & 0xF0) >> 4) +
239 ((lp->setup & 0x0F) >> 1)]);
240 /* The clockrates array index looks very fragile.
241 * It seems like it could have negative indexing.
242 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 if (register_netdev(dev)) {
245 free_irq(dev->irq, dev);
246 return -EIO;
247 }
248 return 0;
249}
250
Joe Perchesf2f0a162015-05-05 10:05:52 -0700251/* Do a hardware reset on the card, and set up necessary registers.
Joe Perchescb334642015-05-05 10:05:47 -0700252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * This should be called as little as possible, because it disrupts the
254 * token on the network (causes a RECON) and requires a significant delay.
255 *
256 * However, it does make sure the card is in a defined state.
257 */
258static int com20020_reset(struct net_device *dev, int really_reset)
259{
Wang Chen454d7c92008-11-12 23:37:49 -0800260 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 u_int ioaddr = dev->base_addr;
262 u_char inbyte;
263
Joe Perchesa34c0932015-05-05 10:05:55 -0700264 arc_printk(D_DEBUG, dev, "%s: %d: %s: dev: %p, lp: %p, dev->name: %s\n",
265 __FILE__, __LINE__, __func__, dev, lp, dev->name);
266 arc_printk(D_INIT, dev, "Resetting %s (status=%02Xh)\n",
267 dev->name, ASTATUS());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Joe Perchesa34c0932015-05-05 10:05:55 -0700269 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 lp->config = TXENcfg | (lp->timeout << 3) | (lp->backplane << 2);
271 /* power-up defaults */
272 SETCONF;
Joe Perchesa34c0932015-05-05 10:05:55 -0700273 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 if (really_reset) {
276 /* reset the card */
277 ARCRESET;
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700278 mdelay(RESETtime * 2);
279 /* COM20020 seems to be slower sometimes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281 /* clear flags & end reset */
Joe Perchesa34c0932015-05-05 10:05:55 -0700282 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
284
285 /* verify that the ARCnet signature byte is present */
Joe Perchesa34c0932015-05-05 10:05:55 -0700286 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 com20020_copy_from_card(dev, 0, 0, &inbyte, 1);
Joe Perchesa34c0932015-05-05 10:05:55 -0700289 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (inbyte != TESTvalue) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700291 arc_printk(D_DEBUG, dev, "%s: %d: %s\n",
292 __FILE__, __LINE__, __func__);
293 arc_printk(D_NORMAL, dev, "reset failed: TESTvalue not present.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 1;
295 }
296 /* enable extended (512-byte) packets */
297 ACOMMAND(CONFIGcmd | EXTconf);
Joe Perchesa34c0932015-05-05 10:05:55 -0700298 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /* done! return success. */
301 return 0;
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static void com20020_setmask(struct net_device *dev, int mask)
305{
306 u_int ioaddr = dev->base_addr;
Joe Perches01a1d5a2015-05-05 10:05:48 -0700307
Joe Perchesa34c0932015-05-05 10:05:55 -0700308 arc_printk(D_DURING, dev, "Setting mask to %x at %x\n", mask, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 AINTMASK(mask);
310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static void com20020_command(struct net_device *dev, int cmd)
313{
314 u_int ioaddr = dev->base_addr;
Joe Perches01a1d5a2015-05-05 10:05:48 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 ACOMMAND(cmd);
317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319static int com20020_status(struct net_device *dev)
320{
321 u_int ioaddr = dev->base_addr;
322
Joe Perchescb334642015-05-05 10:05:47 -0700323 return ASTATUS() + (ADIAGSTATUS() << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326static void com20020_close(struct net_device *dev)
327{
Wang Chen454d7c92008-11-12 23:37:49 -0800328 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 int ioaddr = dev->base_addr;
330
331 /* disable transmitter */
332 lp->config &= ~TXENcfg;
333 SETCONF;
334}
335
336/* Set or clear the multicast filter for this adaptor.
337 * num_addrs == -1 Promiscuous mode, receive all packets
338 * num_addrs == 0 Normal mode, clear multicast list
339 * num_addrs > 0 Multicast mode, receive normal and MC packets, and do
340 * best-effort filtering.
341 * FIXME - do multicast stuff, not just promiscuous.
342 */
343static void com20020_set_mc_list(struct net_device *dev)
344{
Wang Chen454d7c92008-11-12 23:37:49 -0800345 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 int ioaddr = dev->base_addr;
347
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700348 if ((dev->flags & IFF_PROMISC) && (dev->flags & IFF_UP)) {
349 /* Enable promiscuous mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!(lp->setup & PROMISCset))
Joe Perchesa34c0932015-05-05 10:05:55 -0700351 arc_printk(D_NORMAL, dev, "Setting promiscuous flag...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 SET_SUBADR(SUB_SETUP1);
353 lp->setup |= PROMISCset;
354 outb(lp->setup, _XREG);
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700355 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* Disable promiscuous mode, use normal mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if ((lp->setup & PROMISCset))
Joe Perchesa34c0932015-05-05 10:05:55 -0700358 arc_printk(D_NORMAL, dev, "Resetting promiscuous flag...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 SET_SUBADR(SUB_SETUP1);
360 lp->setup &= ~PROMISCset;
361 outb(lp->setup, _XREG);
362 }
363}
364
Randy Dunlapace48ff2006-11-08 19:51:03 -0800365#if defined(CONFIG_ARCNET_COM20020_PCI_MODULE) || \
Randy Dunlap2a103872007-02-12 00:52:22 -0800366 defined(CONFIG_ARCNET_COM20020_ISA_MODULE) || \
367 defined(CONFIG_ARCNET_COM20020_CS_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368EXPORT_SYMBOL(com20020_check);
369EXPORT_SYMBOL(com20020_found);
David S. Millerdd0a2512009-01-25 21:17:25 -0800370EXPORT_SYMBOL(com20020_netdev_ops);
Randy Dunlapace48ff2006-11-08 19:51:03 -0800371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373MODULE_LICENSE("GPL");
374
Randy Dunlapace48ff2006-11-08 19:51:03 -0800375#ifdef MODULE
376
Jon Schindler0ebd1c12008-02-28 01:31:08 -0600377static int __init com20020_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Joe Perches72aeea42015-05-05 10:05:54 -0700379 if (BUGLVL(D_NORMAL))
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700380 pr_info("%s\n", "COM20020 chipset support (by David Woodhouse et al.)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
382}
383
Jon Schindler0ebd1c12008-02-28 01:31:08 -0600384static void __exit com20020_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386}
Jon Schindler0ebd1c12008-02-28 01:31:08 -0600387module_init(com20020_module_init);
388module_exit(com20020_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389#endif /* MODULE */