blob: c749af6db94e0b66ed82c59ca402b39225e38d36 [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 */
28#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/types.h>
31#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/delay.h>
34#include <linux/netdevice.h>
35#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000036#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/arcdevice.h>
38#include <linux/com20020.h>
39
40#include <asm/io.h>
41
42#define VERSION "arcnet: COM20020 chipset support (by David Woodhouse et al.)\n"
43
44static char *clockrates[] =
45{"10 Mb/s", "Reserved", "5 Mb/s",
46 "2.5 Mb/s", "1.25Mb/s", "625 Kb/s", "312.5 Kb/s",
47 "156.25 Kb/s", "Reserved", "Reserved", "Reserved"};
48
49static void com20020_command(struct net_device *dev, int command);
50static int com20020_status(struct net_device *dev);
51static void com20020_setmask(struct net_device *dev, int mask);
52static int com20020_reset(struct net_device *dev, int really_reset);
53static void com20020_copy_to_card(struct net_device *dev, int bufnum,
54 int offset, void *buf, int count);
55static void com20020_copy_from_card(struct net_device *dev, int bufnum,
56 int offset, void *buf, int count);
57static void com20020_set_mc_list(struct net_device *dev);
58static void com20020_close(struct net_device *);
59
60static void com20020_copy_from_card(struct net_device *dev, int bufnum,
61 int offset, void *buf, int count)
62{
63 int ioaddr = dev->base_addr, ofs = 512 * bufnum + offset;
64
65 /* set up the address register */
66 outb((ofs >> 8) | RDDATAflag | AUTOINCflag, _ADDR_HI);
67 outb(ofs & 0xff, _ADDR_LO);
68
69 /* copy the data */
70 TIME("insb", count, insb(_MEMDATA, buf, count));
71}
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static void com20020_copy_to_card(struct net_device *dev, int bufnum,
74 int offset, void *buf, int count)
75{
76 int ioaddr = dev->base_addr, ofs = 512 * bufnum + offset;
77
78 /* set up the address register */
79 outb((ofs >> 8) | AUTOINCflag, _ADDR_HI);
80 outb(ofs & 0xff, _ADDR_LO);
81
82 /* copy the data */
83 TIME("outsb", count, outsb(_MEMDATA, buf, count));
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* Reset the card and check some basic stuff during the detection stage. */
87int com20020_check(struct net_device *dev)
88{
89 int ioaddr = dev->base_addr, status;
Wang Chen454d7c92008-11-12 23:37:49 -080090 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 ARCRESET0;
93 mdelay(RESETtime);
94
95 lp->setup = lp->clockm ? 0 : (lp->clockp << 1);
96 lp->setup2 = (lp->clockm << 4) | 8;
97
98 /* CHECK: should we do this for SOHARD cards ? */
99 /* Enable P1Mode for backplane mode */
100 lp->setup = lp->setup | P1MODE;
101
102 SET_SUBADR(SUB_SETUP1);
103 outb(lp->setup, _XREG);
104
Jeff Morrow52edc172007-02-16 01:42:27 -0800105 if (lp->clockm != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 {
107 SET_SUBADR(SUB_SETUP2);
108 outb(lp->setup2, _XREG);
Joe Perchescb334642015-05-05 10:05:47 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /* must now write the magic "restart operation" command */
111 mdelay(1);
112 outb(0x18, _COMMAND);
113 }
114
115 lp->config = 0x21 | (lp->timeout << 3) | (lp->backplane << 2);
116 /* set node ID to 0x42 (but transmitter is disabled, so it's okay) */
117 SETCONF;
Joe Perchescb334642015-05-05 10:05:47 -0700118 outb(0x42, ioaddr + BUS_ALIGN * 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 status = ASTATUS();
121
122 if ((status & 0x99) != (NORXflag | TXFREEflag | RESETflag)) {
123 BUGMSG(D_NORMAL, "status invalid (%Xh).\n", status);
124 return -ENODEV;
125 }
126 BUGMSG(D_INIT_REASONS, "status after reset: %X\n", status);
127
128 /* Enable TX */
129 outb(0x39, _CONFIG);
Joe Perchescb334642015-05-05 10:05:47 -0700130 outb(inb(ioaddr + BUS_ALIGN * 8), ioaddr + BUS_ALIGN * 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
133
134 status = ASTATUS();
135 BUGMSG(D_INIT_REASONS, "status after reset acknowledged: %X\n",
136 status);
137
138 /* Read first location of memory */
139 outb(0 | RDDATAflag | AUTOINCflag, _ADDR_HI);
140 outb(0, _ADDR_LO);
141
142 if ((status = inb(_MEMDATA)) != TESTvalue) {
143 BUGMSG(D_NORMAL, "Signature byte not found (%02Xh != D1h).\n",
144 status);
145 return -ENODEV;
146 }
147 return 0;
148}
149
Michael Grzeschika0d2e512014-09-29 11:55:35 +0200150static int com20020_set_hwaddr(struct net_device *dev, void *addr)
151{
152 int ioaddr = dev->base_addr;
153 struct arcnet_local *lp = netdev_priv(dev);
154 struct sockaddr *hwaddr = addr;
155
156 memcpy(dev->dev_addr, hwaddr->sa_data, 1);
157 SET_SUBADR(SUB_NODE);
158 outb(dev->dev_addr[0], _XREG);
159
160 return 0;
161}
162
Stephen Hemmingera1799af2009-01-09 13:01:10 +0000163const struct net_device_ops com20020_netdev_ops = {
164 .ndo_open = arcnet_open,
165 .ndo_stop = arcnet_close,
166 .ndo_start_xmit = arcnet_send_packet,
167 .ndo_tx_timeout = arcnet_timeout,
Michael Grzeschika0d2e512014-09-29 11:55:35 +0200168 .ndo_set_mac_address = com20020_set_hwaddr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000169 .ndo_set_rx_mode = com20020_set_mc_list,
Stephen Hemmingera1799af2009-01-09 13:01:10 +0000170};
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* Set up the struct net_device associated with this card. Called after
173 * probing succeeds.
174 */
175int com20020_found(struct net_device *dev, int shared)
176{
177 struct arcnet_local *lp;
178 int ioaddr = dev->base_addr;
179
180 /* Initialize the rest of the device structure. */
181
Wang Chen454d7c92008-11-12 23:37:49 -0800182 lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 lp->hw.owner = THIS_MODULE;
185 lp->hw.command = com20020_command;
186 lp->hw.status = com20020_status;
187 lp->hw.intmask = com20020_setmask;
188 lp->hw.reset = com20020_reset;
189 lp->hw.copy_to_card = com20020_copy_to_card;
190 lp->hw.copy_from_card = com20020_copy_from_card;
191 lp->hw.close = com20020_close;
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (!dev->dev_addr[0])
Joe Perchescb334642015-05-05 10:05:47 -0700194 dev->dev_addr[0] = inb(ioaddr + BUS_ALIGN * 8); /* FIXME: do this some other way! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 SET_SUBADR(SUB_SETUP1);
197 outb(lp->setup, _XREG);
198
199 if (lp->card_flags & ARC_CAN_10MBIT)
200 {
201 SET_SUBADR(SUB_SETUP2);
202 outb(lp->setup2, _XREG);
Joe Perchescb334642015-05-05 10:05:47 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* must now write the magic "restart operation" command */
205 mdelay(1);
206 outb(0x18, _COMMAND);
207 }
208
209 lp->config = 0x20 | (lp->timeout << 3) | (lp->backplane << 2) | 1;
210 /* Default 0x38 + register: Node ID */
211 SETCONF;
212 outb(dev->dev_addr[0], _XREG);
213
214 /* reserve the irq */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800215 if (request_irq(dev->irq, arcnet_interrupt, shared,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 "arcnet (COM20020)", dev)) {
217 BUGMSG(D_NORMAL, "Can't get IRQ %d!\n", dev->irq);
218 return -ENODEV;
219 }
220
221 dev->base_addr = ioaddr;
222
223 BUGMSG(D_NORMAL, "%s: station %02Xh found at %03lXh, IRQ %d.\n",
224 lp->card_name, dev->dev_addr[0], dev->base_addr, dev->irq);
225
226 if (lp->backplane)
227 BUGMSG(D_NORMAL, "Using backplane mode.\n");
228
229 if (lp->timeout != 3)
230 BUGMSG(D_NORMAL, "Using extended timeout value of %d.\n", lp->timeout);
231
232 BUGMSG(D_NORMAL, "Using CKP %d - data rate %s.\n",
Joe Perchescb334642015-05-05 10:05:47 -0700233 lp->setup >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 clockrates[3 - ((lp->setup2 & 0xF0) >> 4) + ((lp->setup & 0x0F) >> 1)]);
235
236 if (register_netdev(dev)) {
237 free_irq(dev->irq, dev);
238 return -EIO;
239 }
240 return 0;
241}
242
Joe Perchescb334642015-05-05 10:05:47 -0700243/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 * Do a hardware reset on the card, and set up necessary registers.
Joe Perchescb334642015-05-05 10:05:47 -0700245 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * This should be called as little as possible, because it disrupts the
247 * token on the network (causes a RECON) and requires a significant delay.
248 *
249 * However, it does make sure the card is in a defined state.
250 */
251static int com20020_reset(struct net_device *dev, int really_reset)
252{
Wang Chen454d7c92008-11-12 23:37:49 -0800253 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 u_int ioaddr = dev->base_addr;
255 u_char inbyte;
256
257 BUGMSG(D_DEBUG, "%s: %d: %s: dev: %p, lp: %p, dev->name: %s\n",
Joe Perchescb334642015-05-05 10:05:47 -0700258 __FILE__, __LINE__, __func__, dev, lp, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 BUGMSG(D_INIT, "Resetting %s (status=%02Xh)\n",
260 dev->name, ASTATUS());
261
Joe Perchescb334642015-05-05 10:05:47 -0700262 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 lp->config = TXENcfg | (lp->timeout << 3) | (lp->backplane << 2);
264 /* power-up defaults */
265 SETCONF;
Joe Perchescb334642015-05-05 10:05:47 -0700266 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 if (really_reset) {
269 /* reset the card */
270 ARCRESET;
271 mdelay(RESETtime * 2); /* COM20020 seems to be slower sometimes */
272 }
273 /* clear flags & end reset */
Joe Perchescb334642015-05-05 10:05:47 -0700274 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
276
277 /* verify that the ARCnet signature byte is present */
Joe Perchescb334642015-05-05 10:05:47 -0700278 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 com20020_copy_from_card(dev, 0, 0, &inbyte, 1);
Joe Perchescb334642015-05-05 10:05:47 -0700281 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (inbyte != TESTvalue) {
Joe Perchescb334642015-05-05 10:05:47 -0700283 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 BUGMSG(D_NORMAL, "reset failed: TESTvalue not present.\n");
285 return 1;
286 }
287 /* enable extended (512-byte) packets */
288 ACOMMAND(CONFIGcmd | EXTconf);
Joe Perchescb334642015-05-05 10:05:47 -0700289 BUGMSG(D_DEBUG, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /* done! return success. */
292 return 0;
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295static void com20020_setmask(struct net_device *dev, int mask)
296{
297 u_int ioaddr = dev->base_addr;
Joe Perches01a1d5a2015-05-05 10:05:48 -0700298
Joe Perchescb334642015-05-05 10:05:47 -0700299 BUGMSG(D_DURING, "Setting mask to %x at %x\n", mask, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 AINTMASK(mask);
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static void com20020_command(struct net_device *dev, int cmd)
304{
305 u_int ioaddr = dev->base_addr;
Joe Perches01a1d5a2015-05-05 10:05:48 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 ACOMMAND(cmd);
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static int com20020_status(struct net_device *dev)
311{
312 u_int ioaddr = dev->base_addr;
313
Joe Perchescb334642015-05-05 10:05:47 -0700314 return ASTATUS() + (ADIAGSTATUS() << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317static void com20020_close(struct net_device *dev)
318{
Wang Chen454d7c92008-11-12 23:37:49 -0800319 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 int ioaddr = dev->base_addr;
321
322 /* disable transmitter */
323 lp->config &= ~TXENcfg;
324 SETCONF;
325}
326
327/* Set or clear the multicast filter for this adaptor.
328 * num_addrs == -1 Promiscuous mode, receive all packets
329 * num_addrs == 0 Normal mode, clear multicast list
330 * num_addrs > 0 Multicast mode, receive normal and MC packets, and do
331 * best-effort filtering.
332 * FIXME - do multicast stuff, not just promiscuous.
333 */
334static void com20020_set_mc_list(struct net_device *dev)
335{
Wang Chen454d7c92008-11-12 23:37:49 -0800336 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int ioaddr = dev->base_addr;
338
339 if ((dev->flags & IFF_PROMISC) && (dev->flags & IFF_UP)) { /* Enable promiscuous mode */
340 if (!(lp->setup & PROMISCset))
341 BUGMSG(D_NORMAL, "Setting promiscuous flag...\n");
342 SET_SUBADR(SUB_SETUP1);
343 lp->setup |= PROMISCset;
344 outb(lp->setup, _XREG);
345 } else
346 /* Disable promiscuous mode, use normal mode */
347 {
348 if ((lp->setup & PROMISCset))
349 BUGMSG(D_NORMAL, "Resetting promiscuous flag...\n");
350 SET_SUBADR(SUB_SETUP1);
351 lp->setup &= ~PROMISCset;
352 outb(lp->setup, _XREG);
353 }
354}
355
Randy Dunlapace48ff2006-11-08 19:51:03 -0800356#if defined(CONFIG_ARCNET_COM20020_PCI_MODULE) || \
Randy Dunlap2a103872007-02-12 00:52:22 -0800357 defined(CONFIG_ARCNET_COM20020_ISA_MODULE) || \
358 defined(CONFIG_ARCNET_COM20020_CS_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359EXPORT_SYMBOL(com20020_check);
360EXPORT_SYMBOL(com20020_found);
David S. Millerdd0a2512009-01-25 21:17:25 -0800361EXPORT_SYMBOL(com20020_netdev_ops);
Randy Dunlapace48ff2006-11-08 19:51:03 -0800362#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364MODULE_LICENSE("GPL");
365
Randy Dunlapace48ff2006-11-08 19:51:03 -0800366#ifdef MODULE
367
Jon Schindler0ebd1c12008-02-28 01:31:08 -0600368static int __init com20020_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 BUGLVL(D_NORMAL) printk(VERSION);
371 return 0;
372}
373
Jon Schindler0ebd1c12008-02-28 01:31:08 -0600374static void __exit com20020_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376}
Jon Schindler0ebd1c12008-02-28 01:31:08 -0600377module_init(com20020_module_init);
378module_exit(com20020_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#endif /* MODULE */