cops.c 28 KB

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