blob: 67ee9851a8ed5431f140e9c57435fe1574f90421 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*======================================================================
2
3 A PCMCIA token-ring driver for IBM-based cards
4
5 This driver supports the IBM PCMCIA Token-Ring Card.
6 Written by Steve Kipisz, kipisz@vnet.ibm.com or
7 bungy@ibm.net
8
9 Written 1995,1996.
10
11 This code is based on pcnet_cs.c from David Hinds.
12
13 V2.2.0 February 1999 - Mike Phillips phillim@amtrak.com
14
15 Linux V2.2.x presented significant changes to the underlying
16 ibmtr.c code. Mainly the code became a lot more organized and
17 modular.
18
19 This caused the old PCMCIA Token Ring driver to give up and go
20 home early. Instead of just patching the old code to make it
21 work, the PCMCIA code has been streamlined, updated and possibly
22 improved.
23
24 This code now only contains code required for the Card Services.
25 All we do here is set the card up enough so that the real ibmtr.c
26 driver can find it and work with it properly.
27
28 i.e. We set up the io port, irq, mmio memory and shared ram
29 memory. This enables ibmtr_probe in ibmtr.c to find the card and
30 configure it as though it was a normal ISA and/or PnP card.
31
32 CHANGES
33
34 v2.2.5 April 1999 Mike Phillips (phillim@amtrak.com)
35 Obscure bug fix, required changed to ibmtr.c not ibmtr_cs.c
36
37 v2.2.7 May 1999 Mike Phillips (phillim@amtrak.com)
38 Updated to version 2.2.7 to match the first version of the kernel
39 that the modification to ibmtr.c were incorporated into.
40
41 v2.2.17 July 2000 Burt Silverman (burts@us.ibm.com)
42 Address translation feature of PCMCIA controller is usable so
43 memory windows can be placed in High memory (meaning above
44 0xFFFFF.)
45
46======================================================================*/
47
48#include <linux/kernel.h>
49#include <linux/init.h>
50#include <linux/ptrace.h>
51#include <linux/slab.h>
52#include <linux/string.h>
53#include <linux/timer.h>
54#include <linux/module.h>
55#include <linux/ethtool.h>
56#include <linux/netdevice.h>
57#include <linux/trdevice.h>
58#include <linux/ibmtr.h>
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <pcmcia/cs_types.h>
61#include <pcmcia/cs.h>
62#include <pcmcia/cistpl.h>
63#include <pcmcia/ds.h>
64
65#include <asm/uaccess.h>
66#include <asm/io.h>
67#include <asm/system.h>
68
69#define PCMCIA
70#include "../tokenring/ibmtr.c"
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*====================================================================*/
74
75/* Parameters that can be set with 'insmod' */
76
77/* MMIO base address */
78static u_long mmiobase = 0xce000;
79
80/* SRAM base address */
81static u_long srambase = 0xd0000;
82
83/* SRAM size 8,16,32,64 */
84static u_long sramsize = 64;
85
86/* Ringspeed 4,16 */
87static int ringspeed = 16;
88
89module_param(mmiobase, ulong, 0);
90module_param(srambase, ulong, 0);
91module_param(sramsize, ulong, 0);
92module_param(ringspeed, int, 0);
93MODULE_LICENSE("GPL");
94
95/*====================================================================*/
96
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020097static int ibmtr_config(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static void ibmtr_hw_setup(struct net_device *dev, u_int mmiobase);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020099static void ibmtr_release(struct pcmcia_device *link);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100100static void ibmtr_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*====================================================================*/
103
104typedef struct ibmtr_dev_t {
Dominik Brodowskifd238232006-03-05 10:45:09 +0100105 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 window_handle_t sram_win_handle;
108 struct tok_info *ti;
109} ibmtr_dev_t;
110
111static void netdev_get_drvinfo(struct net_device *dev,
112 struct ethtool_drvinfo *info)
113{
114 strcpy(info->driver, "ibmtr_cs");
115}
116
Jeff Garzik7282d492006-09-13 14:30:00 -0400117static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .get_drvinfo = netdev_get_drvinfo,
119};
120
Dominik Brodowski5fa91672009-11-08 17:24:46 +0100121static irqreturn_t ibmtr_interrupt(int irq, void *dev_id) {
122 ibmtr_dev_t *info = dev_id;
123 struct net_device *dev = info->dev;
124 return tok_interrupt(irq, dev);
125};
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*======================================================================
128
129 ibmtr_attach() creates an "instance" of the driver, allocating
130 local data structures for one device. The device is registered
131 with Card Services.
132
133======================================================================*/
134
Al Viroabf04372007-03-14 09:04:21 +0000135static int __devinit ibmtr_attach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 ibmtr_dev_t *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct net_device *dev;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200139
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200140 dev_dbg(&link->dev, "ibmtr_attach()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* Create new token-ring device */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700143 info = kzalloc(sizeof(*info), GFP_KERNEL);
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100144 if (!info) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 dev = alloc_trdev(sizeof(struct tok_info));
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100146 if (!dev) {
147 kfree(info);
148 return -ENOMEM;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200151 info->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 link->priv = info;
153 info->ti = netdev_priv(dev);
154
155 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
156 link->io.NumPorts1 = 4;
157 link->io.IOAddrLines = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 link->conf.Attributes = CONF_ENABLE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 link->conf.IntType = INT_MEMORY_AND_IO;
160 link->conf.Present = PRESENT_OPTION;
161
Dominik Brodowski5fa91672009-11-08 17:24:46 +0100162 info->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Dominik Brodowskifd238232006-03-05 10:45:09 +0100164 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200166 return ibmtr_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167} /* ibmtr_attach */
168
169/*======================================================================
170
171 This deletes a driver "instance". The device is de-registered
172 with Card Services. If it has been released, all local data
173 structures are freed. Otherwise, the structures will be freed
174 when the device is released.
175
176======================================================================*/
177
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200178static void ibmtr_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct ibmtr_dev_t *info = link->priv;
Dominik Brodowskib4635812005-11-14 21:25:35 +0100181 struct net_device *dev = info->dev;
Paul Walmsley5bebf822007-05-09 10:47:16 -0600182 struct tok_info *ti = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200184 dev_dbg(&link->dev, "ibmtr_detach\n");
Paul Walmsley5bebf822007-05-09 10:47:16 -0600185
186 /*
187 * When the card removal interrupt hits tok_interrupt(),
188 * bail out early, so we don't crash the machine
189 */
190 ti->sram_phys |= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Dominik Brodowskic7c2fa02010-03-20 19:39:26 +0100192 unregister_netdev(dev);
Paul Walmsley5bebf822007-05-09 10:47:16 -0600193
194 del_timer_sync(&(ti->tr_timer));
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100195
196 ibmtr_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 free_netdev(dev);
Dominik Brodowskib4635812005-11-14 21:25:35 +0100199 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200} /* ibmtr_detach */
201
202/*======================================================================
203
204 ibmtr_config() is scheduled to run after a CARD_INSERTION event
205 is received, to configure the PCMCIA socket, and to make the
206 token-ring device available to the system.
207
208======================================================================*/
209
Al Viroabf04372007-03-14 09:04:21 +0000210static int __devinit ibmtr_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 ibmtr_dev_t *info = link->priv;
213 struct net_device *dev = info->dev;
214 struct tok_info *ti = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 win_req_t req;
216 memreq_t mem;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200217 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200219 dev_dbg(&link->dev, "ibmtr_config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 link->conf.ConfigIndex = 0x61;
222
223 /* Determine if this is PRIMARY or ALTERNATE. */
224
225 /* Try PRIMARY card at 0xA20-0xA23 */
226 link->io.BasePort1 = 0xA20;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200227 i = pcmcia_request_io(link, &link->io);
Dominik Brodowski4c89e882008-08-03 10:07:45 +0200228 if (i != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* Couldn't get 0xA20-0xA23. Try ALTERNATE at 0xA24-0xA27. */
230 link->io.BasePort1 = 0xA24;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200231 ret = pcmcia_request_io(link, &link->io);
232 if (ret)
233 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235 dev->base_addr = link->io.BasePort1;
236
Dominik Brodowskieb141202010-03-07 12:21:16 +0100237 ret = pcmcia_request_exclusive_irq(link, ibmtr_interrupt);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200238 if (ret)
239 goto failed;
Dominik Brodowskieb141202010-03-07 12:21:16 +0100240 dev->irq = link->irq;
241 ti->irq = link->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 ti->global_int_enable=GLOBAL_INT_ENABLE+((dev->irq==9) ? 2 : dev->irq);
243
244 /* Allocate the MMIO memory window */
245 req.Attributes = WIN_DATA_WIDTH_16|WIN_MEMORY_TYPE_CM|WIN_ENABLE;
246 req.Attributes |= WIN_USE_WAIT;
247 req.Base = 0;
248 req.Size = 0x2000;
249 req.AccessSpeed = 250;
Dominik Brodowski6838b032009-11-03 01:31:52 +0100250 ret = pcmcia_request_window(link, &req, &link->win);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200251 if (ret)
252 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 mem.CardOffset = mmiobase;
255 mem.Page = 0;
Magnus Damm868575d2006-12-13 19:46:43 +0900256 ret = pcmcia_map_mem_page(link, link->win, &mem);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200257 if (ret)
258 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 ti->mmio = ioremap(req.Base, req.Size);
260
261 /* Allocate the SRAM memory window */
262 req.Attributes = WIN_DATA_WIDTH_16|WIN_MEMORY_TYPE_CM|WIN_ENABLE;
263 req.Attributes |= WIN_USE_WAIT;
264 req.Base = 0;
265 req.Size = sramsize * 1024;
266 req.AccessSpeed = 250;
Dominik Brodowski6838b032009-11-03 01:31:52 +0100267 ret = pcmcia_request_window(link, &req, &info->sram_win_handle);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200268 if (ret)
269 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 mem.CardOffset = srambase;
272 mem.Page = 0;
Magnus Damm868575d2006-12-13 19:46:43 +0900273 ret = pcmcia_map_mem_page(link, info->sram_win_handle, &mem);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200274 if (ret)
275 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 ti->sram_base = mem.CardOffset >> 12;
278 ti->sram_virt = ioremap(req.Base, req.Size);
279 ti->sram_phys = req.Base;
280
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200281 ret = pcmcia_request_configuration(link, &link->conf);
282 if (ret)
283 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* Set up the Token-Ring Controller Configuration Register and
286 turn on the card. Check the "Local Area Network Credit Card
287 Adapters Technical Reference" SC30-3585 for this info. */
288 ibmtr_hw_setup(dev, mmiobase);
289
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100290 SET_NETDEV_DEV(dev, &link->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 i = ibmtr_probe_card(dev);
293 if (i != 0) {
294 printk(KERN_NOTICE "ibmtr_cs: register_netdev() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 goto failed;
296 }
297
Joe Perchesad361c92009-07-06 13:05:40 -0700298 printk(KERN_INFO
299 "%s: port %#3lx, irq %d, mmio %#5lx, sram %#5lx, hwaddr=%pM\n",
300 dev->name, dev->base_addr, dev->irq,
301 (u_long)ti->mmio, (u_long)(ti->sram_base << 12),
302 dev->dev_addr);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305failed:
306 ibmtr_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200307 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308} /* ibmtr_config */
309
310/*======================================================================
311
312 After a card is removed, ibmtr_release() will unregister the net
313 device, and release the PCMCIA configuration. If the device is
314 still open, this will be postponed until it is closed.
315
316======================================================================*/
317
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200318static void ibmtr_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100320 ibmtr_dev_t *info = link->priv;
321 struct net_device *dev = info->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200323 dev_dbg(&link->dev, "ibmtr_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100325 if (link->win) {
326 struct tok_info *ti = netdev_priv(dev);
327 iounmap(ti->mmio);
Magnus Dammf5560da2006-12-13 19:46:38 +0900328 pcmcia_release_window(link, info->sram_win_handle);
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100329 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200330 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200333static int ibmtr_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100334{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100335 ibmtr_dev_t *info = link->priv;
336 struct net_device *dev = info->dev;
337
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100338 if (link->open)
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100339 netif_device_detach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100340
341 return 0;
342}
343
Al Viro8814b502008-11-22 17:35:44 +0000344static int __devinit ibmtr_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100345{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100346 ibmtr_dev_t *info = link->priv;
347 struct net_device *dev = info->dev;
348
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100349 if (link->open) {
Dominik Brodowski8661bb52006-03-02 00:02:33 +0100350 ibmtr_probe(dev); /* really? */
351 netif_device_attach(dev);
352 }
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100353
354 return 0;
355}
356
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/*====================================================================*/
359
360static void ibmtr_hw_setup(struct net_device *dev, u_int mmiobase)
361{
362 int i;
363
364 /* Bizarre IBM behavior, there are 16 bits of information we
365 need to set, but the card only allows us to send 4 bits at a
366 time. For each byte sent to base_addr, bits 7-4 tell the
367 card which part of the 16 bits we are setting, bits 3-0 contain
368 the actual information */
369
370 /* First nibble provides 4 bits of mmio */
371 i = (mmiobase >> 16) & 0x0F;
372 outb(i, dev->base_addr);
373
374 /* Second nibble provides 3 bits of mmio */
375 i = 0x10 | ((mmiobase >> 12) & 0x0E);
376 outb(i, dev->base_addr);
377
378 /* Third nibble, hard-coded values */
379 i = 0x26;
380 outb(i, dev->base_addr);
381
382 /* Fourth nibble sets shared ram page size */
383
384 /* 8 = 00, 16 = 01, 32 = 10, 64 = 11 */
385 i = (sramsize >> 4) & 0x07;
386 i = ((i == 4) ? 3 : i) << 2;
387 i |= 0x30;
388
389 if (ringspeed == 16)
390 i |= 2;
391 if (dev->base_addr == 0xA24)
392 i |= 1;
393 outb(i, dev->base_addr);
394
395 /* 0x40 will release the card for use */
396 outb(0x40, dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Dominik Brodowski469bf2b92005-06-27 16:28:22 -0700399static struct pcmcia_device_id ibmtr_ids[] = {
400 PCMCIA_DEVICE_PROD_ID12("3Com", "TokenLink Velocity PC Card", 0x41240e5b, 0x82c3734e),
401 PCMCIA_DEVICE_PROD_ID12("IBM", "TOKEN RING", 0xb569a6e5, 0xbf8eed47),
402 PCMCIA_DEVICE_NULL,
403};
404MODULE_DEVICE_TABLE(pcmcia, ibmtr_ids);
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406static struct pcmcia_driver ibmtr_cs_driver = {
407 .owner = THIS_MODULE,
408 .drv = {
409 .name = "ibmtr_cs",
410 },
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100411 .probe = ibmtr_attach,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100412 .remove = ibmtr_detach,
Dominik Brodowski469bf2b92005-06-27 16:28:22 -0700413 .id_table = ibmtr_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100414 .suspend = ibmtr_suspend,
415 .resume = ibmtr_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416};
417
418static int __init init_ibmtr_cs(void)
419{
420 return pcmcia_register_driver(&ibmtr_cs_driver);
421}
422
423static void __exit exit_ibmtr_cs(void)
424{
425 pcmcia_unregister_driver(&ibmtr_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428module_init(init_ibmtr_cs);
429module_exit(exit_ibmtr_cs);