cops.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059
  1. /* cops.c: LocalTalk driver for Linux.
  2. *
  3. * Authors:
  4. * - Jay Schulist <jschlst@samba.org>
  5. *
  6. * With more than a little help from;
  7. * - Alan Cox <Alan.Cox@linux.org>
  8. *
  9. * Derived from:
  10. * - skeleton.c: A network driver outline for linux.
  11. * Written 1993-94 by Donald Becker.
  12. * - ltpc.c: A driver for the LocalTalk PC card.
  13. * Written by Bradford W. Johnson.
  14. *
  15. * Copyright 1993 United States Government as represented by the
  16. * Director, National Security Agency.
  17. *
  18. * This software may be used and distributed according to the terms
  19. * of the GNU General Public License, incorporated herein by reference.
  20. *
  21. * Changes:
  22. * 19970608 Alan Cox Allowed dual card type support
  23. * Can set board type in insmod
  24. * Hooks for cops_setup routine
  25. * (not yet implemented).
  26. * 19971101 Jay Schulist Fixes for multiple lt* devices.
  27. * 19980607 Steven Hirsch Fixed the badly broken support
  28. * for Tangent type cards. Only
  29. * tested on Daystar LT200. Some
  30. * cleanup of formatting and program
  31. * logic. Added emacs 'local-vars'
  32. * setup for Jay's brace style.
  33. * 20000211 Alan Cox Cleaned up for softnet
  34. */
  35. static const char *version =
  36. "cops.c:v0.04 6/7/98 Jay Schulist <jschlst@samba.org>\n";
  37. /*
  38. * Sources:
  39. * COPS Localtalk SDK. This provides almost all of the information
  40. * needed.
  41. */
  42. /*
  43. * insmod/modprobe configurable stuff.
  44. * - IO Port, choose one your card supports or 0 if you dare.
  45. * - IRQ, also choose one your card supports or nothing and let
  46. * the driver figure it out.
  47. */
  48. #include <linux/config.h>
  49. #include <linux/module.h>
  50. #include <linux/kernel.h>
  51. #include <linux/types.h>
  52. #include <linux/fcntl.h>
  53. #include <linux/interrupt.h>
  54. #include <linux/ptrace.h>
  55. #include <linux/ioport.h>
  56. #include <linux/in.h>
  57. #include <linux/slab.h>
  58. #include <linux/string.h>
  59. #include <linux/errno.h>
  60. #include <linux/init.h>
  61. #include <linux/netdevice.h>
  62. #include <linux/etherdevice.h>
  63. #include <linux/skbuff.h>
  64. #include <linux/if_arp.h>
  65. #include <linux/if_ltalk.h>
  66. #include <linux/delay.h> /* For udelay() */
  67. #include <linux/atalk.h>
  68. #include <linux/spinlock.h>
  69. #include <linux/bitops.h>
  70. #include <asm/system.h>
  71. #include <asm/io.h>
  72. #include <asm/dma.h>
  73. #include "cops.h" /* Our Stuff */
  74. #include "cops_ltdrv.h" /* Firmware code for Tangent type cards. */
  75. #include "cops_ffdrv.h" /* Firmware code for Dayna type cards. */
  76. /*
  77. * The name of the card. Is used for messages and in the requests for
  78. * io regions, irqs and dma channels
  79. */
  80. static const char *cardname = "cops";
  81. #ifdef CONFIG_COPS_DAYNA
  82. static int board_type = DAYNA; /* Module exported */
  83. #else
  84. static int board_type = TANGENT;
  85. #endif
  86. static int io = 0x240; /* Default IO for Dayna */
  87. static int irq = 5; /* Default IRQ */
  88. /*
  89. * COPS Autoprobe information.
  90. * Right now if port address is right but IRQ is not 5 this will
  91. * return a 5 no matter what since we will still get a status response.
  92. * Need one more additional check to narrow down after we have gotten
  93. * the ioaddr. But since only other possible IRQs is 3 and 4 so no real
  94. * hurry on this. I *STRONGLY* recommend using IRQ 5 for your card with
  95. * this driver.
  96. *
  97. * This driver has 2 modes and they are: Dayna mode and Tangent mode.
  98. * Each mode corresponds with the type of card. It has been found
  99. * that there are 2 main types of cards and all other cards are
  100. * the same and just have different names or only have minor differences
  101. * such as more IO ports. As this driver is tested it will
  102. * become more clear on exactly what cards are supported. The driver
  103. * defaults to using Dayna mode. To change the drivers mode, simply
  104. * select Dayna or Tangent mode when configuring the kernel.
  105. *
  106. * This driver should support:
  107. * TANGENT driver mode:
  108. * Tangent ATB-II, Novell NL-1000, Daystar Digital LT-200,
  109. * COPS LT-1
  110. * DAYNA driver mode:
  111. * Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95,
  112. * Farallon PhoneNET PC III, Farallon PhoneNET PC II
  113. * Other cards possibly supported mode unkown though:
  114. * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel)
  115. *
  116. * Cards NOT supported by this driver but supported by the ltpc.c
  117. * driver written by Bradford W. Johnson <johns393@maroon.tc.umn.edu>
  118. * Farallon PhoneNET PC
  119. * Original Apple LocalTalk PC card
  120. *
  121. * N.B.
  122. *
  123. * The Daystar Digital LT200 boards do not support interrupt-driven
  124. * IO. You must specify 'irq=0xff' as a module parameter to invoke
  125. * polled mode. I also believe that the port probing logic is quite
  126. * dangerous at best and certainly hopeless for a polled card. Best to
  127. * specify both. - Steve H.
  128. *
  129. */
  130. /*
  131. * Zero terminated list of IO ports to probe.
  132. */
  133. static unsigned int ports[] = {
  134. 0x240, 0x340, 0x200, 0x210, 0x220, 0x230, 0x260,
  135. 0x2A0, 0x300, 0x310, 0x320, 0x330, 0x350, 0x360,
  136. 0
  137. };
  138. /*
  139. * Zero terminated list of IRQ ports to probe.
  140. */
  141. static int cops_irqlist[] = {
  142. 5, 4, 3, 0
  143. };
  144. static struct timer_list cops_timer;
  145. /* use 0 for production, 1 for verification, 2 for debug, 3 for verbose debug */
  146. #ifndef COPS_DEBUG
  147. #define COPS_DEBUG 1
  148. #endif
  149. static unsigned int cops_debug = COPS_DEBUG;
  150. /* The number of low I/O ports used by the card. */
  151. #define COPS_IO_EXTENT 8
  152. /* Information that needs to be kept for each board. */
  153. struct cops_local
  154. {
  155. struct net_device_stats stats;
  156. int board; /* Holds what board type is. */
  157. int nodeid; /* Set to 1 once have nodeid. */
  158. unsigned char node_acquire; /* Node ID when acquired. */
  159. struct atalk_addr node_addr; /* Full node address */
  160. spinlock_t lock; /* RX/TX lock */
  161. };
  162. /* Index to functions, as function prototypes. */
  163. static int cops_probe1 (struct net_device *dev, int ioaddr);
  164. static int cops_irq (int ioaddr, int board);
  165. static int cops_open (struct net_device *dev);
  166. static int cops_jumpstart (struct net_device *dev);
  167. static void cops_reset (struct net_device *dev, int sleep);
  168. static void cops_load (struct net_device *dev);
  169. static int cops_nodeid (struct net_device *dev, int nodeid);
  170. static irqreturn_t cops_interrupt (int irq, void *dev_id, struct pt_regs *regs);
  171. static void cops_poll (unsigned long ltdev);
  172. static void cops_timeout(struct net_device *dev);
  173. static void cops_rx (struct net_device *dev);
  174. static int cops_send_packet (struct sk_buff *skb, struct net_device *dev);
  175. static void set_multicast_list (struct net_device *dev);
  176. static int cops_hard_header (struct sk_buff *skb, struct net_device *dev,
  177. unsigned short type, void *daddr, void *saddr,
  178. unsigned len);
  179. static int cops_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  180. static int cops_close (struct net_device *dev);
  181. static struct net_device_stats *cops_get_stats (struct net_device *dev);
  182. static void cleanup_card(struct net_device *dev)
  183. {
  184. if (dev->irq)
  185. free_irq(dev->irq, dev);
  186. release_region(dev->base_addr, COPS_IO_EXTENT);
  187. }
  188. /*
  189. * Check for a network adaptor of this type, and return '0' iff one exists.
  190. * If dev->base_addr == 0, probe all likely locations.
  191. * If dev->base_addr in [1..0x1ff], always return failure.
  192. * otherwise go with what we pass in.
  193. */
  194. struct net_device * __init cops_probe(int unit)
  195. {
  196. struct net_device *dev;
  197. unsigned *port;
  198. int base_addr;
  199. int err = 0;
  200. dev = alloc_ltalkdev(sizeof(struct cops_local));
  201. if (!dev)
  202. return ERR_PTR(-ENOMEM);
  203. if (unit >= 0) {
  204. sprintf(dev->name, "lt%d", unit);
  205. netdev_boot_setup_check(dev);
  206. irq = dev->irq;
  207. base_addr = dev->base_addr;
  208. } else {
  209. base_addr = dev->base_addr = io;
  210. }
  211. SET_MODULE_OWNER(dev);
  212. if (base_addr > 0x1ff) { /* Check a single specified location. */
  213. err = cops_probe1(dev, base_addr);
  214. } else if (base_addr != 0) { /* Don't probe at all. */
  215. err = -ENXIO;
  216. } else {
  217. /* FIXME Does this really work for cards which generate irq?
  218. * It's definitely N.G. for polled Tangent. sh
  219. * Dayna cards don't autoprobe well at all, but if your card is
  220. * at IRQ 5 & IO 0x240 we find it every time. ;) JS
  221. */
  222. for (port = ports; *port && cops_probe1(dev, *port) < 0; port++)
  223. ;
  224. if (!*port)
  225. err = -ENODEV;
  226. }
  227. if (err)
  228. goto out;
  229. err = register_netdev(dev);
  230. if (err)
  231. goto out1;
  232. return dev;
  233. out1:
  234. cleanup_card(dev);
  235. out:
  236. free_netdev(dev);
  237. return ERR_PTR(err);
  238. }
  239. /*
  240. * This is the real probe routine. Linux has a history of friendly device
  241. * probes on the ISA bus. A good device probes avoids doing writes, and
  242. * verifies that the correct device exists and functions.
  243. */
  244. static int __init cops_probe1(struct net_device *dev, int ioaddr)
  245. {
  246. struct cops_local *lp;
  247. static unsigned version_printed;
  248. int board = board_type;
  249. int retval;
  250. if(cops_debug && version_printed++ == 0)
  251. printk("%s", version);
  252. /* Grab the region so no one else tries to probe our ioports. */
  253. if (!request_region(ioaddr, COPS_IO_EXTENT, dev->name))
  254. return -EBUSY;
  255. /*
  256. * Since this board has jumpered interrupts, allocate the interrupt
  257. * vector now. There is no point in waiting since no other device
  258. * can use the interrupt, and this marks the irq as busy. Jumpered
  259. * interrupts are typically not reported by the boards, and we must
  260. * used AutoIRQ to find them.
  261. */
  262. dev->irq = irq;
  263. switch (dev->irq)
  264. {
  265. case 0:
  266. /* COPS AutoIRQ routine */
  267. dev->irq = cops_irq(ioaddr, board);
  268. if (dev->irq)
  269. break;
  270. /* No IRQ found on this port, fallthrough */
  271. case 1:
  272. retval = -EINVAL;
  273. goto err_out;
  274. /* Fixup for users that don't know that IRQ 2 is really
  275. * IRQ 9, or don't know which one to set.
  276. */
  277. case 2:
  278. dev->irq = 9;
  279. break;
  280. /* Polled operation requested. Although irq of zero passed as
  281. * a parameter tells the init routines to probe, we'll
  282. * overload it to denote polled operation at runtime.
  283. */
  284. case 0xff:
  285. dev->irq = 0;
  286. break;
  287. default:
  288. break;
  289. }
  290. /* Reserve any actual interrupt. */
  291. if (dev->irq) {
  292. retval = request_irq(dev->irq, &cops_interrupt, 0, dev->name, dev);
  293. if (retval)
  294. goto err_out;
  295. }
  296. dev->base_addr = ioaddr;
  297. lp = netdev_priv(dev);
  298. memset(lp, 0, sizeof(struct cops_local));
  299. spin_lock_init(&lp->lock);
  300. /* Copy local board variable to lp struct. */
  301. lp->board = board;
  302. dev->hard_start_xmit = cops_send_packet;
  303. dev->tx_timeout = cops_timeout;
  304. dev->watchdog_timeo = HZ * 2;
  305. dev->hard_header = cops_hard_header;
  306. dev->get_stats = cops_get_stats;
  307. dev->open = cops_open;
  308. dev->stop = cops_close;
  309. dev->do_ioctl = cops_ioctl;
  310. dev->set_multicast_list = set_multicast_list;
  311. dev->mc_list = NULL;
  312. /* Tell the user where the card is and what mode we're in. */
  313. if(board==DAYNA)
  314. printk("%s: %s at %#3x, using IRQ %d, in Dayna mode.\n",
  315. dev->name, cardname, ioaddr, dev->irq);
  316. if(board==TANGENT) {
  317. if(dev->irq)
  318. printk("%s: %s at %#3x, IRQ %d, in Tangent mode\n",
  319. dev->name, cardname, ioaddr, dev->irq);
  320. else
  321. printk("%s: %s at %#3x, using polled IO, in Tangent mode.\n",
  322. dev->name, cardname, ioaddr);
  323. }
  324. return 0;
  325. err_out:
  326. release_region(ioaddr, COPS_IO_EXTENT);
  327. return retval;
  328. }
  329. static int __init cops_irq (int ioaddr, int board)
  330. { /*
  331. * This does not use the IRQ to determine where the IRQ is. We just
  332. * assume that when we get a correct status response that it's the IRQ.
  333. * This really just verifies the IO port but since we only have access
  334. * to such a small number of IRQs (5, 4, 3) this is not bad.
  335. * This will probably not work for more than one card.
  336. */
  337. int irqaddr=0;
  338. int i, x, status;
  339. if(board==DAYNA)
  340. {
  341. outb(0, ioaddr+DAYNA_RESET);
  342. inb(ioaddr+DAYNA_RESET);
  343. mdelay(333);
  344. }
  345. if(board==TANGENT)
  346. {
  347. inb(ioaddr);
  348. outb(0, ioaddr);
  349. outb(0, ioaddr+TANG_RESET);
  350. }
  351. for(i=0; cops_irqlist[i] !=0; i++)
  352. {
  353. irqaddr = cops_irqlist[i];
  354. for(x = 0xFFFF; x>0; x --) /* wait for response */
  355. {
  356. if(board==DAYNA)
  357. {
  358. status = (inb(ioaddr+DAYNA_CARD_STATUS)&3);
  359. if(status == 1)
  360. return irqaddr;
  361. }
  362. if(board==TANGENT)
  363. {
  364. if((inb(ioaddr+TANG_CARD_STATUS)& TANG_TX_READY) !=0)
  365. return irqaddr;
  366. }
  367. }
  368. }
  369. return 0; /* no IRQ found */
  370. }
  371. /*
  372. * Open/initialize the board. This is called (in the current kernel)
  373. * sometime after booting when the 'ifconfig' program is run.
  374. */
  375. static int cops_open(struct net_device *dev)
  376. {
  377. struct cops_local *lp = netdev_priv(dev);
  378. if(dev->irq==0)
  379. {
  380. /*
  381. * I don't know if the Dayna-style boards support polled
  382. * operation. For now, only allow it for Tangent.
  383. */
  384. if(lp->board==TANGENT) /* Poll 20 times per second */
  385. {
  386. init_timer(&cops_timer);
  387. cops_timer.function = cops_poll;
  388. cops_timer.data = (unsigned long)dev;
  389. cops_timer.expires = jiffies + HZ/20;
  390. add_timer(&cops_timer);
  391. }
  392. else
  393. {
  394. printk(KERN_WARNING "%s: No irq line set\n", dev->name);
  395. return -EAGAIN;
  396. }
  397. }
  398. cops_jumpstart(dev); /* Start the card up. */
  399. netif_start_queue(dev);
  400. return 0;
  401. }
  402. /*
  403. * This allows for a dynamic start/restart of the entire card.
  404. */
  405. static int cops_jumpstart(struct net_device *dev)
  406. {
  407. struct cops_local *lp = netdev_priv(dev);
  408. /*
  409. * Once the card has the firmware loaded and has acquired
  410. * the nodeid, if it is reset it will lose it all.
  411. */
  412. cops_reset(dev,1); /* Need to reset card before load firmware. */
  413. cops_load(dev); /* Load the firmware. */
  414. /*
  415. * If atalkd already gave us a nodeid we will use that
  416. * one again, else we wait for atalkd to give us a nodeid
  417. * in cops_ioctl. This may cause a problem if someone steals
  418. * our nodeid while we are resetting.
  419. */
  420. if(lp->nodeid == 1)
  421. cops_nodeid(dev,lp->node_acquire);
  422. return 0;
  423. }
  424. static void tangent_wait_reset(int ioaddr)
  425. {
  426. int timeout=0;
  427. while(timeout++ < 5 && (inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  428. mdelay(1); /* Wait 1 second */
  429. }
  430. /*
  431. * Reset the LocalTalk board.
  432. */
  433. static void cops_reset(struct net_device *dev, int sleep)
  434. {
  435. struct cops_local *lp = netdev_priv(dev);
  436. int ioaddr=dev->base_addr;
  437. if(lp->board==TANGENT)
  438. {
  439. inb(ioaddr); /* Clear request latch. */
  440. outb(0,ioaddr); /* Clear the TANG_TX_READY flop. */
  441. outb(0, ioaddr+TANG_RESET); /* Reset the adapter. */
  442. tangent_wait_reset(ioaddr);
  443. outb(0, ioaddr+TANG_CLEAR_INT);
  444. }
  445. if(lp->board==DAYNA)
  446. {
  447. outb(0, ioaddr+DAYNA_RESET); /* Assert the reset port */
  448. inb(ioaddr+DAYNA_RESET); /* Clear the reset */
  449. if(sleep)
  450. {
  451. long snap=jiffies;
  452. /* Let card finish initializing, about 1/3 second */
  453. while(jiffies-snap<HZ/3)
  454. schedule();
  455. }
  456. else
  457. mdelay(333);
  458. }
  459. netif_wake_queue(dev);
  460. return;
  461. }
  462. static void cops_load (struct net_device *dev)
  463. {
  464. struct ifreq ifr;
  465. struct ltfirmware *ltf= (struct ltfirmware *)&ifr.ifr_ifru;
  466. struct cops_local *lp = netdev_priv(dev);
  467. int ioaddr=dev->base_addr;
  468. int length, i = 0;
  469. strcpy(ifr.ifr_name,"lt0");
  470. /* Get card's firmware code and do some checks on it. */
  471. #ifdef CONFIG_COPS_DAYNA
  472. if(lp->board==DAYNA)
  473. {
  474. ltf->length=sizeof(ffdrv_code);
  475. ltf->data=ffdrv_code;
  476. }
  477. else
  478. #endif
  479. #ifdef CONFIG_COPS_TANGENT
  480. if(lp->board==TANGENT)
  481. {
  482. ltf->length=sizeof(ltdrv_code);
  483. ltf->data=ltdrv_code;
  484. }
  485. else
  486. #endif
  487. {
  488. printk(KERN_INFO "%s; unsupported board type.\n", dev->name);
  489. return;
  490. }
  491. /* Check to make sure firmware is correct length. */
  492. if(lp->board==DAYNA && ltf->length!=5983)
  493. {
  494. printk(KERN_WARNING "%s: Firmware is not length of FFDRV.BIN.\n", dev->name);
  495. return;
  496. }
  497. if(lp->board==TANGENT && ltf->length!=2501)
  498. {
  499. printk(KERN_WARNING "%s: Firmware is not length of DRVCODE.BIN.\n", dev->name);
  500. return;
  501. }
  502. if(lp->board==DAYNA)
  503. {
  504. /*
  505. * We must wait for a status response
  506. * with the DAYNA board.
  507. */
  508. while(++i<65536)
  509. {
  510. if((inb(ioaddr+DAYNA_CARD_STATUS)&3)==1)
  511. break;
  512. }
  513. if(i==65536)
  514. return;
  515. }
  516. /*
  517. * Upload the firmware and kick. Byte-by-byte works nicely here.
  518. */
  519. i=0;
  520. length = ltf->length;
  521. while(length--)
  522. {
  523. outb(ltf->data[i], ioaddr);
  524. i++;
  525. }
  526. if(cops_debug > 1)
  527. printk("%s: Uploaded firmware - %d bytes of %d bytes.\n",
  528. dev->name, i, ltf->length);
  529. if(lp->board==DAYNA) /* Tell Dayna to run the firmware code. */
  530. outb(1, ioaddr+DAYNA_INT_CARD);
  531. else /* Tell Tang to run the firmware code. */
  532. inb(ioaddr);
  533. if(lp->board==TANGENT)
  534. {
  535. tangent_wait_reset(ioaddr);
  536. inb(ioaddr); /* Clear initial ready signal. */
  537. }
  538. return;
  539. }
  540. /*
  541. * Get the LocalTalk Nodeid from the card. We can suggest
  542. * any nodeid 1-254. The card will try and get that exact
  543. * address else we can specify 0 as the nodeid and the card
  544. * will autoprobe for a nodeid.
  545. */
  546. static int cops_nodeid (struct net_device *dev, int nodeid)
  547. {
  548. struct cops_local *lp = netdev_priv(dev);
  549. int ioaddr = dev->base_addr;
  550. if(lp->board == DAYNA)
  551. {
  552. /* Empty any pending adapter responses. */
  553. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
  554. {
  555. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupts. */
  556. if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
  557. cops_rx(dev); /* Kick any packets waiting. */
  558. schedule();
  559. }
  560. outb(2, ioaddr); /* Output command packet length as 2. */
  561. outb(0, ioaddr);
  562. outb(LAP_INIT, ioaddr); /* Send LAP_INIT command byte. */
  563. outb(nodeid, ioaddr); /* Suggest node address. */
  564. }
  565. if(lp->board == TANGENT)
  566. {
  567. /* Empty any pending adapter responses. */
  568. while(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
  569. {
  570. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupt. */
  571. cops_rx(dev); /* Kick out packets waiting. */
  572. schedule();
  573. }
  574. /* Not sure what Tangent does if nodeid picked is used. */
  575. if(nodeid == 0) /* Seed. */
  576. nodeid = jiffies&0xFF; /* Get a random try */
  577. outb(2, ioaddr); /* Command length LSB */
  578. outb(0, ioaddr); /* Command length MSB */
  579. outb(LAP_INIT, ioaddr); /* Send LAP_INIT byte */
  580. outb(nodeid, ioaddr); /* LAP address hint. */
  581. outb(0xFF, ioaddr); /* Int. level to use */
  582. }
  583. lp->node_acquire=0; /* Set nodeid holder to 0. */
  584. while(lp->node_acquire==0) /* Get *True* nodeid finally. */
  585. {
  586. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear any interrupt. */
  587. if(lp->board == DAYNA)
  588. {
  589. if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
  590. cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
  591. }
  592. if(lp->board == TANGENT)
  593. {
  594. if(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
  595. cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
  596. }
  597. schedule();
  598. }
  599. if(cops_debug > 1)
  600. printk(KERN_DEBUG "%s: Node ID %d has been acquired.\n",
  601. dev->name, lp->node_acquire);
  602. lp->nodeid=1; /* Set got nodeid to 1. */
  603. return 0;
  604. }
  605. /*
  606. * Poll the Tangent type cards to see if we have work.
  607. */
  608. static void cops_poll(unsigned long ltdev)
  609. {
  610. int ioaddr, status;
  611. int boguscount = 0;
  612. struct net_device *dev = (struct net_device *)ltdev;
  613. del_timer(&cops_timer);
  614. if(dev == NULL)
  615. return; /* We've been downed */
  616. ioaddr = dev->base_addr;
  617. do {
  618. status=inb(ioaddr+TANG_CARD_STATUS);
  619. if(status & TANG_RX_READY)
  620. cops_rx(dev);
  621. if(status & TANG_TX_READY)
  622. netif_wake_queue(dev);
  623. status = inb(ioaddr+TANG_CARD_STATUS);
  624. } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
  625. /* poll 20 times per second */
  626. cops_timer.expires = jiffies + HZ/20;
  627. add_timer(&cops_timer);
  628. return;
  629. }
  630. /*
  631. * The typical workload of the driver:
  632. * Handle the network interface interrupts.
  633. */
  634. static irqreturn_t cops_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  635. {
  636. struct net_device *dev = dev_id;
  637. struct cops_local *lp;
  638. int ioaddr, status;
  639. int boguscount = 0;
  640. ioaddr = dev->base_addr;
  641. lp = netdev_priv(dev);
  642. if(lp->board==DAYNA)
  643. {
  644. do {
  645. outb(0, ioaddr + COPS_CLEAR_INT);
  646. status=inb(ioaddr+DAYNA_CARD_STATUS);
  647. if((status&0x03)==DAYNA_RX_REQUEST)
  648. cops_rx(dev);
  649. netif_wake_queue(dev);
  650. } while(++boguscount < 20);
  651. }
  652. else
  653. {
  654. do {
  655. status=inb(ioaddr+TANG_CARD_STATUS);
  656. if(status & TANG_RX_READY)
  657. cops_rx(dev);
  658. if(status & TANG_TX_READY)
  659. netif_wake_queue(dev);
  660. status=inb(ioaddr+TANG_CARD_STATUS);
  661. } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
  662. }
  663. return IRQ_HANDLED;
  664. }
  665. /*
  666. * We have a good packet(s), get it/them out of the buffers.
  667. */
  668. static void cops_rx(struct net_device *dev)
  669. {
  670. int pkt_len = 0;
  671. int rsp_type = 0;
  672. struct sk_buff *skb = NULL;
  673. struct cops_local *lp = netdev_priv(dev);
  674. int ioaddr = dev->base_addr;
  675. int boguscount = 0;
  676. unsigned long flags;
  677. spin_lock_irqsave(&lp->lock, flags);
  678. if(lp->board==DAYNA)
  679. {
  680. outb(0, ioaddr); /* Send out Zero length. */
  681. outb(0, ioaddr);
  682. outb(DATA_READ, ioaddr); /* Send read command out. */
  683. /* Wait for DMA to turn around. */
  684. while(++boguscount<1000000)
  685. {
  686. barrier();
  687. if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_READY)
  688. break;
  689. }
  690. if(boguscount==1000000)
  691. {
  692. printk(KERN_WARNING "%s: DMA timed out.\n",dev->name);
  693. spin_unlock_irqrestore(&lp->lock, flags);
  694. return;
  695. }
  696. }
  697. /* Get response length. */
  698. if(lp->board==DAYNA)
  699. pkt_len = inb(ioaddr) & 0xFF;
  700. else
  701. pkt_len = inb(ioaddr) & 0x00FF;
  702. pkt_len |= (inb(ioaddr) << 8);
  703. /* Input IO code. */
  704. rsp_type=inb(ioaddr);
  705. /* Malloc up new buffer. */
  706. skb = dev_alloc_skb(pkt_len);
  707. if(skb == NULL)
  708. {
  709. printk(KERN_WARNING "%s: Memory squeeze, dropping packet.\n",
  710. dev->name);
  711. lp->stats.rx_dropped++;
  712. while(pkt_len--) /* Discard packet */
  713. inb(ioaddr);
  714. spin_unlock_irqrestore(&lp->lock, flags);
  715. return;
  716. }
  717. skb->dev = dev;
  718. skb_put(skb, pkt_len);
  719. skb->protocol = htons(ETH_P_LOCALTALK);
  720. insb(ioaddr, skb->data, pkt_len); /* Eat the Data */
  721. if(lp->board==DAYNA)
  722. outb(1, ioaddr+DAYNA_INT_CARD); /* Interrupt the card */
  723. spin_unlock_irqrestore(&lp->lock, flags); /* Restore interrupts. */
  724. /* Check for bad response length */
  725. if(pkt_len < 0 || pkt_len > MAX_LLAP_SIZE)
  726. {
  727. printk(KERN_WARNING "%s: Bad packet length of %d bytes.\n",
  728. dev->name, pkt_len);
  729. lp->stats.tx_errors++;
  730. dev_kfree_skb_any(skb);
  731. return;
  732. }
  733. /* Set nodeid and then get out. */
  734. if(rsp_type == LAP_INIT_RSP)
  735. { /* Nodeid taken from received packet. */
  736. lp->node_acquire = skb->data[0];
  737. dev_kfree_skb_any(skb);
  738. return;
  739. }
  740. /* One last check to make sure we have a good packet. */
  741. if(rsp_type != LAP_RESPONSE)
  742. {
  743. printk(KERN_WARNING "%s: Bad packet type %d.\n", dev->name, rsp_type);
  744. lp->stats.tx_errors++;
  745. dev_kfree_skb_any(skb);
  746. return;
  747. }
  748. skb->mac.raw = skb->data; /* Point to entire packet. */
  749. skb_pull(skb,3);
  750. skb->h.raw = skb->data; /* Point to data (Skip header). */
  751. /* Update the counters. */
  752. lp->stats.rx_packets++;
  753. lp->stats.rx_bytes += skb->len;
  754. /* Send packet to a higher place. */
  755. netif_rx(skb);
  756. dev->last_rx = jiffies;
  757. }
  758. static void cops_timeout(struct net_device *dev)
  759. {
  760. struct cops_local *lp = netdev_priv(dev);
  761. int ioaddr = dev->base_addr;
  762. lp->stats.tx_errors++;
  763. if(lp->board==TANGENT)
  764. {
  765. if((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  766. printk(KERN_WARNING "%s: No TX complete interrupt.\n", dev->name);
  767. }
  768. printk(KERN_WARNING "%s: Transmit timed out.\n", dev->name);
  769. cops_jumpstart(dev); /* Restart the card. */
  770. dev->trans_start = jiffies;
  771. netif_wake_queue(dev);
  772. }
  773. /*
  774. * Make the card transmit a LocalTalk packet.
  775. */
  776. static int cops_send_packet(struct sk_buff *skb, struct net_device *dev)
  777. {
  778. struct cops_local *lp = netdev_priv(dev);
  779. int ioaddr = dev->base_addr;
  780. unsigned long flags;
  781. /*
  782. * Block a timer-based transmit from overlapping.
  783. */
  784. netif_stop_queue(dev);
  785. spin_lock_irqsave(&lp->lock, flags);
  786. if(lp->board == DAYNA) /* Wait for adapter transmit buffer. */
  787. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
  788. cpu_relax();
  789. if(lp->board == TANGENT) /* Wait for adapter transmit buffer. */
  790. while((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  791. cpu_relax();
  792. /* Output IO length. */
  793. outb(skb->len, ioaddr);
  794. if(lp->board == DAYNA)
  795. outb(skb->len >> 8, ioaddr);
  796. else
  797. outb((skb->len >> 8)&0x0FF, ioaddr);
  798. /* Output IO code. */
  799. outb(LAP_WRITE, ioaddr);
  800. if(lp->board == DAYNA) /* Check the transmit buffer again. */
  801. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
  802. outsb(ioaddr, skb->data, skb->len); /* Send out the data. */
  803. if(lp->board==DAYNA) /* Dayna requires you kick the card */
  804. outb(1, ioaddr+DAYNA_INT_CARD);
  805. spin_unlock_irqrestore(&lp->lock, flags); /* Restore interrupts. */
  806. /* Done sending packet, update counters and cleanup. */
  807. lp->stats.tx_packets++;
  808. lp->stats.tx_bytes += skb->len;
  809. dev->trans_start = jiffies;
  810. dev_kfree_skb (skb);
  811. return 0;
  812. }
  813. /*
  814. * Dummy function to keep the Appletalk layer happy.
  815. */
  816. static void set_multicast_list(struct net_device *dev)
  817. {
  818. if(cops_debug >= 3)
  819. printk("%s: set_multicast_list executed\n", dev->name);
  820. }
  821. /*
  822. * Another Dummy function to keep the Appletalk layer happy.
  823. */
  824. static int cops_hard_header(struct sk_buff *skb, struct net_device *dev,
  825. unsigned short type, void *daddr, void *saddr,
  826. unsigned len)
  827. {
  828. if(cops_debug >= 3)
  829. printk("%s: cops_hard_header executed. Wow!\n", dev->name);
  830. return 0;
  831. }
  832. /*
  833. * System ioctls for the COPS LocalTalk card.
  834. */
  835. static int cops_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  836. {
  837. struct cops_local *lp = netdev_priv(dev);
  838. struct sockaddr_at *sa = (struct sockaddr_at *)&ifr->ifr_addr;
  839. struct atalk_addr *aa = (struct atalk_addr *)&lp->node_addr;
  840. switch(cmd)
  841. {
  842. case SIOCSIFADDR:
  843. /* Get and set the nodeid and network # atalkd wants. */
  844. cops_nodeid(dev, sa->sat_addr.s_node);
  845. aa->s_net = sa->sat_addr.s_net;
  846. aa->s_node = lp->node_acquire;
  847. /* Set broardcast address. */
  848. dev->broadcast[0] = 0xFF;
  849. /* Set hardware address. */
  850. dev->dev_addr[0] = aa->s_node;
  851. dev->addr_len = 1;
  852. return 0;
  853. case SIOCGIFADDR:
  854. sa->sat_addr.s_net = aa->s_net;
  855. sa->sat_addr.s_node = aa->s_node;
  856. return 0;
  857. default:
  858. return -EOPNOTSUPP;
  859. }
  860. }
  861. /*
  862. * The inverse routine to cops_open().
  863. */
  864. static int cops_close(struct net_device *dev)
  865. {
  866. struct cops_local *lp = netdev_priv(dev);
  867. /* If we were running polled, yank the timer.
  868. */
  869. if(lp->board==TANGENT && dev->irq==0)
  870. del_timer(&cops_timer);
  871. netif_stop_queue(dev);
  872. return 0;
  873. }
  874. /*
  875. * Get the current statistics.
  876. * This may be called with the card open or closed.
  877. */
  878. static struct net_device_stats *cops_get_stats(struct net_device *dev)
  879. {
  880. struct cops_local *lp = netdev_priv(dev);
  881. return &lp->stats;
  882. }
  883. #ifdef MODULE
  884. static struct net_device *cops_dev;
  885. MODULE_LICENSE("GPL");
  886. module_param(io, int, 0);
  887. module_param(irq, int, 0);
  888. module_param(board_type, int, 0);
  889. int init_module(void)
  890. {
  891. if (io == 0)
  892. printk(KERN_WARNING "%s: You shouldn't autoprobe with insmod\n",
  893. cardname);
  894. cops_dev = cops_probe(-1);
  895. if (IS_ERR(cops_dev))
  896. return PTR_ERR(cops_dev);
  897. return 0;
  898. }
  899. void cleanup_module(void)
  900. {
  901. unregister_netdev(cops_dev);
  902. cleanup_card(cops_dev);
  903. free_netdev(cops_dev);
  904. }
  905. #endif /* MODULE */
  906. /*
  907. * Local variables:
  908. * compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O2 -c cops.c"
  909. * c-basic-offset: 4
  910. * c-file-offsets: ((substatement-open . 0))
  911. * End:
  912. */